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

:root {
  --white: #fff;
  --black: #000;
  --grey-100: #F9F9F9;
  --grey-200: #d9d9d9;
  --grey-300: #E5E5E5;
  --corporate: #182027;
  --dark-blue: #182027;
  --dark: #162028;
  --green: #a3b87f;

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

  --common-font: "g-und-a";
  --title-font: "g-und-a";
  --semi-font: "g-und-a";
}



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




body {
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  font-size: min(max(1rem, 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(--black);
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}

.wrapper {
  display: inline;
  float: left;
  width: 100%;
  background: var(--white);
  overflow-x: hidden;
}

header {
  position: absolute;
  display: block;
  float: left;
  left: 0;
  width: 100%;
  z-index: 10;
  height: 6em;
}

.header_fadein {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  float: left;
  width: 100%;
  height: auto;
  padding: 5px 0;
  z-index: 1006;
  background-color: var(--white);
  /*transform: translate(0, calc(-100% - 10px));*/
  transform: translateY(-70px);
  transition: transform 0.3s ease-in;
  -webkit-box-shadow: 0px 5px 14px 0px rgba(0,0,0,0.02);
  -moz-box-shadow: 0px 5px 14px 0px rgba(0,0,0,0.02);
  box-shadow: 0px 5px 14px 0px rgba(0,0,0,0.02);
}

.header_fadein a.logo {
  width: clamp(2.5em, 3vw, 3em);
  transition: none;
  padding: 0.5em;
  z-index: 1006;
}

.header_fadein a.logo.dark {
  display: none;
}

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

.header__content.content-column {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
}

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(--black);
  padding: clamp(2em, 5vw, 5em) 10% 5% 10%;
  overflow: hidden;
}

img.footer-icon {
  position: relative;
  float: left;
  width: 20px;
}

img.footer-logo {
  max-width: 16em;
}

.footer .row-4 p, .footer .row-4 p a {
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 2rem;
}

.footer-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-links .divider {
  position: relative;
  height: 0.8rem;
  width: 1px;
  background: var(--black);
  margin: 0 2rem;
  top: 2px;
}

.footer-background {
  position: relative;
  float: left;
  width: 100%;
  height: clamp(14em, 18vw, 18em);
  background-image: url('/static/images/footer-background.svg');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

footer .col-1 img {
  max-width: 130px;
  float: right;
}

#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;
}

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

.pagination a {
  padding: 5px 10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--semi-font);
  font-size: 0.8rem;
}

.pagination span.current {
  padding: 5px 10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--semi-font);
  font-size: 0.8rem;
}


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

.heads {
  width: 75%;
  height: clamp(10em, 50vh, 50vh);
  margin-bottom: clamp(5em, 10vw, 10em);
  float: right;
  background: #002856;
  background: -moz-radial-gradient(center, ellipse cover, #002856 0%, #001b32 100%);
  background: -webkit-radial-gradient(center, ellipse cover, #002856 0%,#001b32 100%);
  background: radial-gradient(ellipse at center, #002856 0%,#001b32 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002856', endColorstr='#001b32',GradientType=1 );
  max-width: calc(100% - 30em);
}

a.logo {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  width: clamp(5em, 14vw, 14em);
  transition: none;
  padding: 2em 4em;
  line-height: 0;
}

a.logo img {
  height: 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 {
  width: 45%;
  display: none;
  min-height: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: auto;
  right: -45%;
  bottom: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 2020;
  background-color: var(--white);
}

#navigationWrap .background {
  position: absolute;
  right: -25%;
  bottom: -10%;
  width: 100%;
  height: 100%;
  background-image: url('/static/images/navigation-background.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1007;
}

.menu-container {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1008;
}

.menu-container nav ul li {
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: clamp(3px, 2vw, 5px);
  font-weight: normal;
  transition: color ease 0.5s;
  opacity: 0;
  transform: translateY(20px);
}

.col-1.black {
  background: var(--black);
}

.menu-container .col-1.row-1-10 {
  width: clamp(3em, 5vw, 5em);
}

#navigationWrap a.logo {
  position: absolute;
  background: transparent;
  padding: 0;
  top: 3em;
  left: 5em;
}

nav.nav {
  grid-column: 2;
  grid-row: 2;
  border-left: solid 1px var(--black);
}

nav.subnav {
  grid-column: 3;
  grid-row: 2;
}

.nav-left {
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  text-align: left;
}

nav ul {
  list-style-type: none;
  padding-inline-start: 0;
}

.nav-left h2 {
  margin-bottom: 2rem;
}

.nav-left h2, .nav-left li, .nav-left a {
  color: var(--white);
}

nav li a.active {
  color: var(--green);
}

.nav-left h3 {
  font-size: 1.5rem;
  color: var(--white);
  hyphens: none;
  word-break: keep-all;
  white-space: nowrap;
}

.nav-left h3::before {
  content: '';
  position: relative;
  float: left;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url('/static/images/nav-arrow.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 1.5rem;
}

nav li {
  line-height: 2;
}

.nav-mid {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  text-align: left;
}

.nav-mid h2 {
  margin-bottom: 1.5rem;
}

.nav-mid h2, .nav-mid li, .nav-mid a {
  color: var(--black);
}

.nav-mid nav li a.active {
  color: var(--white);
}

.nav-mid h3 {
  font-size: 1.5rem;
  color: var(--black);
  hyphens: none;
  white-space: nowrap;
}

.nav-mid h3::before {
  content: '';
  position: relative;
  float: left;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url('/static/images/nav-arrow-black.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 1.5rem;
}

.menu-container .col-3 .nav-kontakt {
  position: relative;
  text-align: left;
}

.nav-kontakt .kontakt-grid .col-2.row-1:first-line {
  font-weight: bold;
}

.sticky {
  position: absolute;
  width: 60px;
  height: auto;
  z-index: 1005;
  top: clamp(50px, 6vw, 110px);
  right: 11%;
  display: block;
}

#navigationWrap .sticky {
  z-index: 1010;
}

.header_fadein .sticky {
  top: 50%;
  right: 0;
}

.hamburger {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
}

.hamburger .line1 {
  width: 35px;
  height: 3px;
  background-color: var(--black);
  display: block;
  margin: 4px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


.hamburger .line2 {
  width: 25px;
  left: 5px;
  height: 3px;
  background-color: var(--black);
  display: block;
  margin: 4px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

.hamburger.is-active .line1:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
  width: 33px;
  height: 3px;
  left: 0;
  -webkit-animation: none;
  animation: none;
}

.hamburger.is-active .line1 {
  -webkit-transform: translateY(0px) rotate(-45deg);
  -ms-transform: translateY(0px) rotate(-45deg);
  -o-transform: translateY(0px) rotate(-45deg);
  transform: translateY(0px) rotate(-45deg);
  width: 33px;
  height: 3px;
  -webkit-animation: none;
  animation: none;
}

.hamburger.is-active .line2 {
  display: none;
}

.nav-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('/static/images/nav-background.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}





/*------------------------------------------------------------------------------------------------------------------------------------------------------
	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 ///// */

.section-parallax {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.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%);
}




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

.accordion {
  width: 100%;
  float: left;
}
.accordion__item {
  width: 100%;
  float: left;
}
.accordion__title {
  position: relative;
  background: transparent;
  padding: 1em 0 1em;
  font-size: min(max(1.2rem, 2vw), 1.5rem);
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px var(--grey-200);
}
.accordion__title:after {
  position: absolute;
  content: " ";
  right: 15px;
  width: 35px;
  height: 24px;
  background-image: url(../images/arrow_right.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;
}
.is-open .accordion__title:after {
  transform: translate(0, -50%) rotate(90deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.accordion__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.accordion__item.is-open {
  background-color: var(--white);
}
.accordion__content {
  padding: 15px;
}
.accordion__title p {
  white-space: nowrap;
}







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


#slider {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.slider {
  width: 100%;
  height: 100%;
  float: right;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#002856+0,001b32+100 */
background: #002856; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover,  #002856 0%, #001b32 100%); /* FF3.6-15 */
background: -webkit-radial-gradient(center, ellipse cover,  #002856 0%,#001b32 100%); /* Chrome10-25,Safari5.1-6 */
background: radial-gradient(ellipse at center,  #002856 0%,#001b32 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002856', endColorstr='#001b32',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.swiper1 .swiper-slide .slider {
  width: calc(100% - 30em) !important;
  float: right;
  margin-left: 30em;
  overflow: hidden;
}

.slider-title-area {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  left: 14em;
  width: 16em;
  white-space: nowrap;
}

.swiper-button-prev:after, .swiper-button-next:after {
  content: '' !important;
  background-image: url(/static/images/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 35px;
  height: 35px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
  transform: translate(-50%, -50%) rotate(180deg);
}

.swiper-button-prev, .swiper-button-next {
  left: 5px;
  margin-top: clamp(3em, 5vw, 5em);
}

.swiper-button-next {
  margin-left: 4em;
}

.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(--black);
}

.swiper2 {
  padding-right: 1em;
}

.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(--black);
  white-space: nowrap;
  margin: 0 0px 0 4px;
  padding: 0 8px 0 4px;
  float: left;
  line-height: 1;
}

.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(--black);
  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);
}

#slider {
  position: relative;
  float: left;
  width: 100%;
  background-color: var(--dark);
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/*--------------------------------------------------
	G&A Individual Style
---------------------------------------------------*/

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: var(--dark-blue);
  z-index: 2;
  transition: 0.5s all ease;
}

.fokus-slider .swiper-slide:hover .slider-overlay {
  opacity: 0.2;
}

.fokus-slider .swiper-slide:hover .gradient-left, .fokus-slider .swiper-slide:hover .gradient-right {
  opacity: 0.4;
}

.gradient-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background: -moz-linear-gradient(left,  rgba(12,32,37,1) 0%, rgba(12,32,37,0) 100%);
  background: -webkit-linear-gradient(left,  rgba(12,32,37,1) 0%,rgba(12,32,37,0) 100%);
  background: linear-gradient(to right,  rgba(12,32,37,1) 0%,rgba(12,32,37,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c2025', endColorstr='#000c2025',GradientType=1 );
  z-index: 2;
  opacity: 0.6;
  transition: 0.5s all ease;
}

.gradient-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  background: -moz-linear-gradient(left,  rgba(12,32,37,0) 0%, rgba(12,32,37,1) 100%); 
  background: -webkit-linear-gradient(left,  rgba(12,32,37,0) 0%,rgba(12,32,37,1) 100%); 
  background: linear-gradient(to right,  rgba(12,32,37,0) 0%,rgba(12,32,37,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000c2025', endColorstr='#0c2025',GradientType=1 );
  z-index: 2;
  opacity: 0.6;
  transition: 0.5s all ease;
}

img.scrolldown {
  position: absolute;
  bottom: 10vh;
  left: clamp(3em, 6vw, 8em);
  z-index: 10;
  width: auto;
  height: clamp(1.5em, 3vw, 3em);
  cursor: pointer;
}

.project-title {
  position: absolute;
  right: 10%;
  bottom: 10vh;
  z-index: 4;
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.swiper3 a.lightbox-button {
  top: 50%;
  bottom: auto;
}

.slider-buttons {
  margin-bottom: 1rem;
}

.project-title a.button-white {
  margin-top: 1rem;
  float: right;
  margin-right: 1rem;
  clear: both;
}

.swiper-slide h2 {
  color: var(--white);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: clamp(5px, 0.5vw, 10px);
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  font-size: clamp(2rem, 3vw, 3.5rem);
  text-align: right;
  float: right;
}

.lightbox-button {
  position: absolute;
  right: 10%;
  z-index: 999;
  bottom: 40vh;
  outline: none;
}

.lightbox-button:focus {
  outline: none;
}

.lightbox-text {
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.6rem;
  text-align: center;
  letter-spacing: 2px;
  font-weight: lighter;
  hyphens: none;
  transform: rotate(90deg) translate(25px, -17px);
}

.lightbox-icon {
  width: 16px;
  height: 16px;
  background-image: url('/static/images/plus-white.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  float: right;
}

.slider-content {
  position: absolute;
  top: 42%;
  left: 15%;
  z-index: 3;
  width: 50%;
  transform: translate(0, -50%);
}

.slider-logo {
  position: relative;
  float: left;
  width: clamp(4rem, 6vw, 8em);
  clear: both;
  margin-bottom: 2em;
}

.slider-content p {
  position: relative;
  float: left;
  color: var(--white);
  clear: both;
  width: 100%;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: 0px;
  hyphens: none;
  word-break: keep-all;
}

.stoerer {
  position: absolute;
  top: 10%;
  right: 10%;
  width: clamp(10em, 15vw, 15em);
  background: var(--green);
  color: var(--white);
  z-index: 4;
  padding: 2em;
  border-radius: 12px;
}

.stoerer a.button-white {
  float: left;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 0.5rem;
}

.swiper-button-prev.swiper-button-prev-1 {
  right: calc(10% + 50px);
  left: auto;
  z-index: 5;
  bottom: 18%;
  top: auto;
}

.swiper-button-next.swiper-button-next-1 {
  right: calc(10% + 10px);
  left: auto;
  z-index: 5;
  bottom: 18%;
  top: auto;
}

.swiper-button-prev-1:after {
  content: '' !important;
  background-image: url(/static/images/arrow-left-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
}

.swiper-button-next-1:after {
  content: '' !important;
  background-image: url(/static/images/arrow-right-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
}

#slider .sticky {
  top: auto;
  bottom: 40vh;
  margin-bottom: 7em;
  right: 10%;
}

#slider .line1 {
  background: var(--white);
  height: 3px;
  width: 33px;
}

#slider .line2 {
  background: var(--white);
  height: 3px;
  width: 23px;
  left: 5px;
}

.menu-text {
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.6rem;
  text-align: center;
  letter-spacing: 2px;
  font-weight: lighter;
  hyphens: none;
  transform: rotate(90deg) translate(25px, -13px);
}

.is-active .menu-text {
  color: var(--black);
  transform: rotate(90deg) translate(35px, -5px);
}

.menu-container .grid {
  height: 100%;
}

#navigationWrap nav {
  width: 100%;
  float: left;
  margin-top: 2em;
}

img.nav-logo {
  position: relative;
  float: left;
  width: 2.5rem;
  margin-top: 15%;
  clear: both;
}

img.nav-logo.white {
  display: none;
}

img.nav-logo.dark {
  display: block;
}

p.kontakt {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  margin-top: 1em;
}

.kontakt a {
  color: var(--green);
}

.darken {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--dark);
  opacity: 0;
  z-index: 1006;
  display: none;
}

.footer p.adresse {
  margin-top: 4rem;
}

.social {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
}

img.social-icon {
  max-width: clamp(1.25rem, 1.25vw, 1.75rem);
  max-height: clamp(1.5rem, 1.5vw, 2rem);
  width: clamp(1.5rem, 1.5vw, 2rem);
  height: auto;
  position: relative;
  float: left;
  display: block;
  margin-right: clamp(1rem, 1.5vw, 2rem);
}

img.scrolltotop {
  height: clamp(1.5em, 3vw, 3em);
  cursor: pointer;
}

p.introtext-1 {
  font-size: clamp(1.5rem, 1.75vw, 1.75rem);
  max-width: 50%;
  hyphens: none;
  line-height: 1.25;
}

.introtext-2 {
  max-width: 40%;
}

.introtext-2 p {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 2;
  hyphens: none;
}

img.home-image-1, .home-image-1 {
  position: relative;
  float: left;
  width: 100%;
  opacity: 0.9;
  height: clamp(20em, 40vw, 50em);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}

#containerFull.kreativitaet, #containerFull.visionen {
  margin-left: 12%;
  margin-right: 12%;
  width: 76%;
}

.vertrauen h2 {
  position: absolute;
  font-size: clamp(2.25rem, 4.5vw, 5rem);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: clamp(5px, 1.3vw, 20px);
  hyphens: none;
  word-break: keep-all;
  white-space: nowrap;
  margin-left: -25%;
}

h2.Zusammenarbeit {
  margin-left: -50%;
}

h2.a-title-3.Stärken {
  margin-left: -20%;
}

.glow_rtl {
  position: absolute;
  top: -30%;
  right: -40%;
  width: 100%;
  height: 100%;
  background: -moz-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
  background: radial-gradient(ellipse at center,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 70%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
  z-index: 2;
  opacity: 0.4;
}

.glow_ltr {
  position: absolute;
  top: -50%;
  left: -40%;
  width: 100%;
  height: 100%;
  background: -moz-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
  background: radial-gradient(ellipse at center,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 70%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
  z-index: 2;
  opacity: 0.6;
}

.visionen h2 {
  position: absolute;
  font-size: clamp(3rem,  4.5vw, 5rem);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 20px;
  hyphens: none;
  word-break: keep-all;
  white-space: nowrap;
  margin-left: clamp(1em, 2vw, 3em);
  margin-top: -2rem;
}

.kreativitaet h2 {
  position: absolute;
  font-size: clamp(2rem,  4.5vw, 5rem);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: clamp(10px,  1.6vw, 20px);
  hyphens: none;
  word-break: keep-all;
  white-space: nowrap;
  margin-top: -2rem;
}

.vertrauen p, .vertrauen ul {
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  line-height: 1.25;
  margin-top: clamp(1rem, 2vw, 2rem);
  margin-right: clamp(4rem, 6vw, 8rem);
  margin-bottom: clamp(1rem, 2vw, 2rem);
  margin-left: clamp(4rem, 6vw, 8rem);
}

.vertrauen ul li a {
  color: var(--green);
}

.vertrauen ul {
  padding-inline-start: 22px;
}

.visionen p, .kreativitaet p {
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  line-height: 1.25;
  margin-top: clamp(1rem, 1vw, 2rem);
  margin-right: clamp(2rem, 4vw, 5rem);
  margin-bottom: clamp(1rem, 1vw, 2rem);
  margin-left: clamp(3rem, 5vw, 6rem);
}

.vertrauen a.button, .visionen a.button, .kreativitaet a.button {
  position: relative;
  float: left;
  margin-top: 2rem;
  margin-left: 2rem;
}

img.home-image-2, .home-image-2 {
  position: relative;
  float: left;
  width: 100%;
  opacity: 0.9;
  height: clamp(20em, 30vw, 40em);
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}

img.home-image-3, .home-image-3 {
  position: relative;
  float: left;
  width: 100%;
  opacity: 0.9;
  height: clamp(20em, 30vw, 40em);
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

section.blog {
  width: 90%!important;
  margin-left: 10%;
}

.blog h2 {
  margin-left: 10%;
}

.blog a.button {
  margin-left: calc(10% + 0.5rem);
  margin-top: 2em;
}

.swiper-buttons {
  position: absolute;
  float: left;
  height: 2em;
  width: 10em;
  top: -4em;
  left: 50%;
  transform: translate(-50%, 0);
}

.blog-content {
  display: relative;
  float: left;
  width: 100%;
}

.blog-content h4 {
  hyphens: auto;
  white-space: break-spaces;
  max-width: 100%;
  text-align: left;
  float: left;
  clear: both;
  margin: 1rem 2rem 1rem;
  font-weight: normal;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 1px;
}

.blog-content a.button {
  float: left;
  clear: both;
  margin-top: 1em;
  margin-left: 3rem;
}

.blog .bild {
  height: clamp(25em, 35vw, 50em);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  float: left;
  position: relative;
  width: calc(100% - 2rem);
  border-radius: 15px;
  margin: 1rem 2rem 2rem 2rem;
}

.blog-item-content {
  display: relative;
  float: left;
  width: 100%;
}

.blog-item-content h4 {
  hyphens: auto;
  white-space: break-spaces;
  text-align: left;
  float: left;
  clear: both;
  margin: 1rem 2rem 1rem;
  font-weight: normal;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 1px;
}

.blog-item-content a.button {
  float: left;
  clear: both;
  margin-left: 4rem;
}

.blog-item-content span.date {
  margin: 1rem 0 0 2rem;
}

span.date {
  position: relative;
  float: left;
  margin: 2rem 0 0 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

section.header {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 3% 5%;
}

img.header-logo {
  width: clamp(1.5em, 2.5vw, 2.5em);
}

.header .sticky {
  position: relative;
  float: right;
  top: auto;
  right: auto;
}

section.header {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 3% 5% 2%;
}

.projekt-nav.mobile {
  display: none;
}

.header .projekt-nav {
  position: relative;
}

.projekt-nav:after {
  content: "";
  position: absolute;
  display: none;
  right: 0;
  top: 0;
  width: 20px;
  height: 100%;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}

.projekt-nav-scroller {
  margin-left: 50%;
  transform: translate(-50%, 0);
}

.projekt-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

.projekt-nav ul li {
  margin: 0 clamp(1.5rem, 2.75vw, 2rem);
  font-weight: lighter;
  text-transform: uppercase;
  font-size: clamp(0.6rem, 0.8vw, 0.9rem);
  letter-spacing: 2px;
  white-space: nowrap;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.projekt-nav a:before {
  content: "";
  position: relative;
  float: left;
  margin-right: 12px;
  background-image: url('/static/images/plus.svg');
  height: 14px;
  width: 14px;
  top: 2px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.5s all ease;
}

.projekt-nav a.active {
  color: var(--green);
}

.projekt-nav a.active::before, .projekt-nav a:hover::before {
  background-image: url('/static/images/plus-green.svg');
}

section.fokus-slider {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  flex: 1;
}

.wrapper.fokus {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.fokus-slider .swiper-container {
  height: calc(100% - clamp(50px, 20vw, 100px));
}

.fokus-slider-buttons {
  position: relative;
  float: left;
  width: 100%;
  height: clamp(50px, 20vw, 100px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.swiper-button-prev-3 {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  margin: 0;
  float: right;
}

.swiper-button-next-3 {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  margin: 0;
  float: right;
}

.swiper-slide.querformat {
  width: calc(60% - 20px);
}

.swiper-slide.hochformat {
  width: calc(40% - 20px);
}

.fokus-slider .swiper-slide h2 {
  color: var(--white);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 6px;
  hyphens: none;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  text-align: right;
  float: right;
  clear: both;
  line-height: 1.25;
}

.darken-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--dark);
  opacity: 0;
  z-index: 2;
  display: none;
}

.infobox {
  position: absolute;
  right: calc(-40% - 5rem);
  top: 0;
  width: 40%;
  height: 100%;
  background: var(--white);
  z-index: 11;
  display: none;
}

.infobox::before {
  position: absolute;
  content: '';
  width: 5rem;
  height: 100%;
  top: 0;
  left: -5rem;
  background-color: var(--white);
  background-image: url('/static/images/nav-background.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

span.projekt-typ {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.projekt-header .projekt-typ {
  padding-left: 10%;
}

.projekt-details {
  position: relative;
  float: left;
  width: 85%;
  height: 90%;
  overflow: auto;
  padding-right: 5%;
}

.projekt-details::-webkit-scrollbar {
  height: 100%;
  width: 5px;
}

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

.projekt-details::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: var(--green); 
  box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}

.button.projektdetail {
  margin-top: 2rem;
  color: var(--green);
}

.projekt-details h4 {
  margin-bottom: 1em;
}

.projekt-details h5 {
  margin-top: 1em;
}

.projekt-details p {
  font-size: 1rem;
  font-size: min(max(1rem, 1vw), 1.1rem);
  margin-top: 0;
}

.projekt-details a.button {
  margin-top: 2rem;
  margin-left: 2rem;
}

.close-button {
  position: absolute;
  right: 15%;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.close-button img {
  width: 30px;
}

span.close-text {
  transform: rotate(90deg);
  position: relative;
  float: left;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.6rem;
  margin-top: 3em;
  right: -5px;
}

a.slider-link {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

section.projekt-header {
  position: relative;
  float: left;
  width: 100%;
  padding: 2% 0 0 10%;
}

.projekt-header h1 {
  line-height: 1;
  width: 100%;
  padding-left: 10%;
}

img.projekt-bild {
  position: relative;
  float: left;
  width: 100%;
}

.projekt-nav.vertical {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 19;
  transform: rotate(270deg) translate(0%, -170px);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s all ease;
}

.projekt-introtext p {
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
}

.projekt-text p {
  line-height: 1.75;
}

section.masonry {
  position: relative;
  float: left;
  margin: 10% 0 10% 10%;
  width: 90%;
}

.masonry-item {
  display: block;
  width: 47%;
  margin: 0 0 6%;
  height: auto;
  float: left;
  clear: left;
}

.masonry-item.right {
  float: right;
  clear: right;
}

.projekt-details.masonry-item.right {
  padding-right: 5%;
}

.projekt-details.masonry-item a.button {
  margin-left: 0;
  clear: both;
  margin-top: 1rem;
}

.projekt-links {
  margin-top: 1rem;
}

.naechstes-projekt h2 {
  margin-left: -10rem;
  margin-top: -2rem;
}

.naechstes-projekt p {
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 0;
  margin-top: -2rem;
}

section.projekt-uebersicht {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

#containerM.projekt-uebersicht {
  margin-top: 5%;
}

.projekt-item {
  position: relative;
  width: 40%;
  margin: 5%;
  float: left;
}

.projekt-item.hoch {
  position: relative;
  width: 35%;
  margin: 5%;
  float: left;
  margin-left: 10%;
}

.projekt-item.quadrat {
  margin-top: 10%;
}

.projekt-item.wide {
  width: 80%;
  float: right;
  margin-right: 5%;
}

span.art {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: right;
  width: 100%;
  float: left;
  padding-right: 2rem;
}

.projekt-item-bild {
  position: relative;
  float: left;
  width: 100%;
  height: clamp(15em, 20vw, 30em);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  margin: 1rem 0 2rem;
}

.blog-uebersicht .projekt-item-bild {
  height: clamp(20em, 40vw, 50em);
}

.quadrat .projekt-item-bild {
  height: clamp(20em, 28vw, 40em);
}

.hoch .projekt-item-bild {
  height: clamp(35em, 45vw, 50em);
}

.projekt-item-content {
  position: relative;
  float: left;
  width: 100%;
}

.projekt-item-content h4 {
  hyphens: auto;
  white-space: break-spaces;
  text-align: left;
  float: left;
  clear: both;
  margin: 1rem 4rem 1rem;
  font-weight: normal;
  line-height: 1.25;
  text-transform: none;
}

.projekt-item-content a.button {
  float: left;
  clear: both;
  margin-left: 6rem;
}

.unternehmen-intro .introtext p {
  font-size: min(max(1rem, 1vw), 1.1rem);
  white-space: inherit;
  max-width: 65%;
  line-height: 1.25;
}

.unternehmen-intro h1 {
  text-transform: uppercase;
}

.unternehmen-facts {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
}

.fact {
  color: var(--green);
}

span.titel {
  position: relative;
  float: left;
  clear: both;
  letter-spacing: 1px;
}

span.zahl {
  position: relative;
  float: left;
  clear: both;
  font-size: clamp(2rem, 2.5vw, 2.5em);
  text-align: left;
}

.block-text p {
  font-size: min(max(1rem, 1vw), 1.1rem);
  line-height: 1.75;
}

.block-text a {
  color: var(--green);
}

.projekt-text a {
  color: var(--green);
}

.projekt-text a.button {
  color: var(--black);
}

.karriere-text {
  position: relative;
  float: left;
  width: 75%;
}

.team-intro h1 {
  text-transform: uppercase;
}

#containerM.team {
  margin-top: clamp(1.2em, 2vw, 2em);
  margin-bottom: 0;
}

.team {
  display: flex!important;
  flex-direction: row;
  flex-wrap: wrap;
}

.team-item {
  position: relative;
  float: left;
  flex: 0 23%;
  margin: 1%;
}

.team-bild {
  position: relative;
  float: left;
  height: clamp(10em, 14vw, 20em);
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
}

p.e-mail a {
  color: var(--green);
}

.team-item-content {
  position: relative;
  float: left;
  width: 100%;
  padding: 2rem 1rem;
}

.team-item-content h5 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(1.1rem, 1.25vw, 1.5rem);
}

.ehemalige h4 {
  margin-bottom: 1rem;
}

ul.werkliste {
  list-style-type: none;
  padding-inline-start: 1rem;
  float: left;
  width: 100%;
}

.werkliste li:before {
  content: '';
  position: absolute;
  left: -1rem;
  width: 15px;
  height: 15px;
  background-image: url('/static/images/plus.svg');
  top: 5px;
}

li.werkliste-item {
  padding-left: 10px;
}

.filter {
  float: left;
  width: 100%;
  margin-top: 2rem;
  max-width: clamp(60rem, 80vw, 80rem);
}

.right .home-image-1 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.block-text ul {
  margin: 0rem 8rem 0rem 8rem;
  list-style-type: none;
  padding-inline-start: 1rem;
}

.block-text ul li {
  padding-left: 15px;
}

.block-text ul li:before {
  content: '';
  position: absolute;
  float: left;
  width: 15px;
  height: 15px;
  background-image: url('/static/images/plus.svg');
  margin-right: 1rem;
  top: 5px;
  left: -10px;
}

section.blog-header {
  position: relative;
  float: left;
  width: 100%;
  padding: 2% 10% 0 10%;
}

.blog-header .projekt-typ {
  padding-left: 0;
}

img.blog-bild {
  position: relative;
  float: left;
  width: 100%;
  border-radius: 15px;
}

.zeitstrahl-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 2em;
  margin-left: clamp(4rem, 6vw, 8rem);
}

.zeitstrahl {
  position: relative;
  float: left;
  width: 90%;
  display: flex;
  flex-direction: row;
  margin-left: 10%;
}

.zeitstrahl-item {
  position: relative;
  float: left;
  width: auto;
  margin-left: -15px;
  flex: 0 0 20em;
  height: 8em;
}

.zeitstrahl .zeitstrahl-item:first-child {
  margin-left: 4rem;
}

.zeitstrahl-wrapper::-webkit-scrollbar {
  height: 5px;
  width: 100%;
}

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

.zeitstrahl-wrapper::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--green); 
  box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}

img.sektor.dark {
  display: none;
}

img.sektor.bright {
  display: block;
}

h4.jahr {
  position: absolute;
  top: -5px;
  font-size: min(max(1.5rem, 1.5vw), 2rem);
  color: var(--green);
  letter-spacing: 0px;
  transform: translate(-60%, 0);
}

p.text {
  position: absolute;
  top: 35%;
  width: 60%;
  left: 17%;
  font-size: min(max(1rem, 1vw), 1.1rem);
}

.impressum h4 {
  margin-top: 4rem;
}

.portfolioFilter.clearfix.button-group {
  position: relative;
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 2rem;
}

a.button.current {
  color: var(--green);
}

a.button.current::before {
  background-image: url('/static/images/dot-green.svg');
}

.portfolioFilter a.button {
  margin-right: 2rem;
}

input#firstname {
  display: none;
}

.form-group {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 2rem;
  font-size: 1rem;
}

input {
  border: none;
  border-bottom: 2px solid var(--black);
  background: transparent;
  color: var(--black);
  padding: 8px 6px;
  font-size: 1rem;
  outline: none;
  max-width: 100%;
}

input[type="text"] {
  width: clamp(20rem, 30vw, 40rem);
}

button[type="submit"] {
  position: relative;
  float: left;
  width: auto;
  color: var(--black);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-top: 1rem;
}

button[type="submit"]::before {
  position: relative;
  float: left;
  content: '';
  width: 10px;
  height: 10px;
  top: 2px;
  margin-right: 14px;
  background-image: url('/static/images/dot.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}


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

p {
	margin: 8px 0;
  font-size: min(max(1rem, 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(--black);
  text-decoration: none;
  cursor: pointer;
  transition: all ease .5s;
}

a:hover {
  text-decoration: none;
  color: var(--green);
}

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

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

h1 {
  font-family: var(--title-font);
  color: var(--black);
  font-size: min(max(2rem, 3vw), 4rem);
  font-weight: normal;
  line-height: 1;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  letter-spacing: 1px;
}

h2 {
  font-family: var(--title-font);
  color: var(--black);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 20px;
  line-height: 1;
  margin-block-start: 0;
  margin-block-end: 0;
}

h3 {
  font-family: var(--title-font);
  color: var(--black);
  font-size: 4rem;
  line-height: 1.25;
  font-weight: bold;
  margin-block-start: 0;
  margin-block-end: 0;
}

h4 {
  font-family: var(--common-font);
  color: var(--black);
  font-size: min(max(1.25rem, 1.5vw), 2rem);
  line-height: 1.5;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h5 {
  font-family: var(--title-font);
  color: var(--black);
  font-size: min(max(1.1rem, 1.5vw), 1.5rem);
  line-height: 1.5;
  font-weight: normal;
  letter-spacing: 0px;
}

a.button-white {
  position: relative;
  float: left;
  width: auto;
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

a.button-white::before {
  position: relative;
  float: left;
  content: '';
  width: 10px;
  height: 10px;
  top: 5px;
  margin-right: 14px;
  background-image: url('/static/images/dot-white.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

a.button {
  position: relative;
  float: left;
  width: auto;
  color: var(--black);
  text-transform: uppercase;
  font-size: min(max(0.7rem, 0.8vw, 0.9rem));
  letter-spacing: 2px;
  padding-left: 20px;
}

a.button:hover {
  color: var(--green);
}

a.button::before {
  position: absolute;
  left: 0;
  content: '';
  width: 10px;
  height: 10px;
  top: 45%;
  transform: translate(0, -50%);
  margin-right: 14px;
  background-image: url('/static/images/dot.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.5s all ease;
}

a.button:hover::before {
  background-image: url('/static/images/dot-green.svg');
}

a.projektdetail::before {
  background-image: url(/static/images/dot-green.svg);
}


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

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

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

.has-animation {
    opacity: 0.01;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    transform-origin: 50% 0;
    will-change: transform;
}

.has-animation-left {
    opacity: 0.01;
    -webkit-transform: translateX(-80px);
    transform: translateX(-80px);
    transform-origin: 50% 0;
    will-change: transform;
}

.has-img-animation {
    opacity: 1;
    -webkit-transform: scaleY(0.8);
    transform: scaleY(0.8);
    transform-origin: bottom;
    will-change: transform;
    transition: 1s cubic-bezier(.075,.82,.165,1);
}

.has-animation-stagger {
    opacity: 0;
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
}

.has-mask span > span {
    display: inline-block;
    margin: 0!important;
    line-height: 40px;
    height: 1.5;
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
}

p.has-mask span, p.has-mask span > span {
    line-height: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.rv, .rvl, .rvr, .rvb {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

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

.referenz-item {
  width: clamp(10rem, 14vw, 14rem);
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  margin-bottom: 1rem;
}

.referenz-item .projekt-item-bild {
  width: clamp(10rem, 14vw, 14rem);
  height: clamp(8rem, 10vw, 10rem);
  margin-bottom: 1rem;
}

span.referenz-titel {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
  width: 100%;
  float: left;
}

input#quicksearch {
  border: 1px solid var(--black);
  color: var(--black);
  width: clamp(16rem, 20vw, 20rem);
  margin-bottom: 4rem;
  border-radius: 30px;
  background-color: transparent;
  padding: 0.75rem 1.5rem;
  outline: 0;
  box-shadow: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

/*--------------------------------------------------
	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: 100%;
}

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


/*--------------------------------------------------
	LOCOMOTIVE SCROLL
---------------------------------------------------*/

/*! locomotive-scroll v3.5.4 | MIT License | https://github.com/locomotivemtl/locomotive-scroll 
html.has-scroll-smooth {
  overflow: hidden; }

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.has-scroll-smooth body {
  overflow: hidden; }

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh; }

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100vh;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0; }
  .c-scrollbar:hover {
    transform: scaleX(1.45); }
  .c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
    opacity: 1; }

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab; }
  .has-scroll-dragging .c-scrollbar_thumb {
    cursor: -webkit-grabbing;
    cursor: grabbing; }


.scrollarea {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
}
*/


/*--------------------------------------------------
	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-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
  background-size: cover;
  mix-blend-mode: multiply;
}


.heads-overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  mix-blend-mode: screen;
}

.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);
}

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


.introtitel {
  font-size: min(max(1.3rem, 2vw, 2rem));
  color: var(--black);
}

.introtext p {
  font-size: min(max(1.3rem, 2vw, 2rem));
  white-space: inherit;
}

.stamp {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-size: cover;
  left: 0;
  top: 0;
  opacity: 0.04;
}

.gallery img {
  min-height: 16vw;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.usedcases {
  background: var(--black);
  padding: 10% 0;
  margin: clamp(5em, 10vw, 10em) 0 0;
}

.usedcases.home {
  margin: 0;
}

.usedcases h3 {
  color: var(--white);
}

.usedcases .swiper-slide, .usedcases .panel {
  display: grid;
  justify-items: center;
  align-items: center;
  padding: 4em 4em 4em;
  background: var(--black);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
  transition: all ease 0.5s;
  transform: scale(0.95);
}

.usedcases .panel {
  width: clamp(300px, 32vw, 550px);
}

.usedcases .swiper-wrapper {
  width: calc(100% - 10em);
  margin-right: 10em;
}

.usedcases .swiper-slide:hover, .usedcases .panel:over {
  transform: scale(1);
}

.usedcases .swiper-slide img.silhouette, .usedcases .panel img.silhouette {
  max-width: 70%;
  transition: all ease 0.5s;
  z-index: 2;
  max-height: 30em;
  min-height: 30em;
  width: auto;
  height: auto;
}

.usedcases .swiper-slide img.silhouette-shadow, .usedcases .panel img.silhouette-shadow {
  width: 30%;
  transform: translate(-50%, -50%);
  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;
  top: 50%;
  left: 50%;
  opacity: 0.5;
}

.usedcases .swiper-slide:hover img.silhouette-shadow, .usedcases .panel:hover img.silhouette-shadow {
  opacity: 1;
  width: 40%;
}

/* rechte Seite leer */
.usedcases .swiper-slide.swiper-slide-duplicate.swiper-slide-prev {
  opacity: 0;
}

.kategorie {
  font-family: var(--title-font);
  color: var(--white);
  font-size: 1.5rem;
  position: absolute;
  top: 1em;
  left: 2em;
  text-transform: lowercase;
}

.konzept {
  position: relative;
  display: block;
  float: right;
  margin-top: 2px;
  right: 2.5em;
}

.konzept-titel {
  color: var(--white);
  font-size: min(max(1.1rem, 1.3vw), 1.3rem);
  position: relative;
  text-align: right;
  float: right;
  width: 100%;
  margin-top: 3em;
}

.slider .konzept-titel {
  margin-top: 1em;
}

a.konzept-link {
  color: var(--white);
  font-size: 1rem;
  position: relative;
  text-align: right;
  float: right;
  margin-right: 40px;
  width: calc(100% - 40px);
  margin-top: 3px;
}

img.arrow_right {
  position: absolute;
  right: -40px;
  width: 29px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.usedcases.home {
  overflow-x: hidden;
}

.usedcases-wrapper {
  display:flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  overflow: hidden;
  flex-wrap: wrap;
}



.pin-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 4em;
}




/* ///// THREESIXTY ///// */

#discover_container {
  position: relative;
  display: block;
  width: 100%;
  float: left;
}

.threesixtyturn {
  width: 494px;
  height: 1000px;
  position: relative;
  top: 0;
  left: 50%;
  z-index: 1;
  background: transparent url(../images/360degrees.webp) no-repeat 0 0;
  transform: translate(-50%);
  background-size: cover;
  filter: url(#drop-shadow);
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=12, OffY=12, Color='#444')";
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=12, OffY=12, Color='#444')";
}



/*canvas {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100vw;
  max-height: 100vh;
}*/

canvas {
  position: relative;
  max-width: 100vw;
  max-height: 100vh;
  height: clamp(10em, 35vw, 35em);
}

#container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
#container h1 {
  z-index: 9999;
  color: white;
  font-size: 12rem;
  font-weight: 900;
}

.container-hero {
  height: calc(3770px - 100vh);
  top: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}
.container-hero div.h1 {
  width: 50%;
  font-size: 8rem;
  font-weight: 600;
  text-align: center;
  color: white;
}
@media (max-width: 800px) {
  .container-hero div.h1 {
    width: 90%;
  }
}



/* ///// UMSETZUNG ////// */

.storytelling-container {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  min-height: 100vh;
  background-color: var(--white);
}

.storytelling_konzept {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  min-height: 100%;
}


.storytelling {
  top: 100%;
  height: 6000px;
}

.umsetzung1, .umsetzung2 {
  position: relative;
  display: grid;
  float: left;
  width: 33%;
  justify-items: center;
  align-items: start;
}

.umsetzung3 {
  position: absolute;
  display: grid;
  float: left;
  width: 27%;
  top: 0;
  right: 11%;
  justify-items: center;
  align-items: start;
}


img.umsetzung_profil {
  position: relative;
  height: clamp(10em, 30vw, 30em);
}

img.umsetzung_text {
  position: absolute;
  z-index: 2;
}

.umsetzung1 img.umsetzung_text {
  width: clamp(4em, 24vw, 26em);
  top: clamp(2em, 3vw, 3em);
  left: clamp(4em, 6vw, 6em);
}

.umsetzung2 img.umsetzung_text {
  width: clamp(4em, 38vw, 40em);
  top: clamp(2em, 3vw, 3em);
  left: clamp(0em, -1vw, -6em);
}

.umsetzung3 img.umsetzung_text {
  width: clamp(4em, 30vw, 40em);
  top: clamp(-1em, 0vw, 0em);
  left: clamp(0em, 2.5vw, 2.5em);
}

.umsetzung_bezeichnung {
  margin-top: clamp(2em, 4vw, 4em);
  position: relative;
  display: grid;
  float: left;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}

.umsetzung_bezeichnung p {
  font-family: var(--semi-font);
  text-transform: uppercase;
  font-weight: bold;
  font-size: min(max(1.2rem, 1.4vw), 1.4rem);
}


.storytelling b, .storytelling strong {
  font-weight: normal;
  color: var(--black);
}



.slogan_services {
  position: relative;
  display: block;
  float: left;
  width: 80%;
  padding-left: 50%;
  color: var(--black);
  font-size: min(max(1.3rem, 2vw, 2rem));
  transform: translateY(-100%);
}

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

.overlay1 {
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 220%;
  background: var(--black);
  mix-blend-mode: lighten;
  z-index: 100000;
  opacity: 0;
}

.overlay2 {
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 220%;
  background: var(--black);
  opacity: 0;
  z-index: 100000;
}

.storytelling_text {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: -40vh;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.storytelling_textblock {
  position: absolute;
  z-index: 100001;
  width: 40%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
}

.storytelling_textblock strong {
  color: var(--black);
}

img.fw_icon {
  width: clamp(4em, 10vw, 10em);
}

.map-container {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  justify-content: center;
}

img.map {
  min-width: 1024px;
}

.blueprint {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.blueprint_bg {
  position: relative;
  display: block;
  float: left;
  width: calc(100% - clamp(4em, 8vw, 8em));
  height: calc(80vh - clamp(4em, 8vw, 8em));
  margin: clamp(2em, 4vw, 4em);
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

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

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

.blueprint_slogan_container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

img.stampicon {
  position: relative;
  z-index: 4;
  width: clamp(5em, 18vw, 18em);
  height: auto;
}

.blueprint_slogan {
  position: relative;
  z-index: 4;
  color: var(--white);
  font-family: "fabric";
  letter-spacing: 30px;
  font-size: min(max(1.2rem, 1.8vw), 1.8rem);
  margin-top: 3em;
  text-transform: uppercase;
}

img.overview {
  width: 100%;
  height: clamp(15em, 30vw, 30em);
  object-fit: cover;
}

.mitarbeiter-content {
  position: absolute;
  z-index: 4;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: var(--white);
  opacity: 0;
  transform: translateY(-25px);
  transition: all ease 0.5s;
}

.overlay-portrait-multiply {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  mix-blend-mode: multiply;
  z-index: 3;
  opacity: 0;
  transition: all ease 0.5s;
}

.overlay-portrait-lighten {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  mix-blend-mode: hard-light;
  z-index: 2;
  opacity: 0;
  transition: all ease 0.5s;
}

.mitarbeiter:hover .mitarbeiter-content {
  opacity: 1;
  transform: translateY(-20%);
}

.mitarbeiter:hover .overlay-portrait-multiply, .mitarbeiter:hover .overlay-portrait-lighten {
  opacity: 1;
}

.mitarbeiter-content h4 {
  font-family: var(--semi-font);
  text-transform: none;
  font-size: min(max(1.1rem, 1.3vw), 1.3rem);
  color: var(--white);
}

.mitarbeiter h3 {
  font-family: var(--semi-font);
  text-transform: none;
  font-size: min(max(1.4rem, 2vw), 2rem);
}

.mitarbeiter-content p {
  margin: 0;
}

.mitarbeiter-image {
  position: relative;
  display: block;
  float: left;
  height: clamp(20em, 35vw, 35em);
}

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


table.liste tr {
  border-bottom: solid 1px var(--grey-200);
  padding: 10px 0;
  margin: 10px 0;
}


.grid.akzente .cols-2 {
  grid-template-columns: 10em 1fr;
}

.grid.akzente .cols-2 .col-1 {
  color: var(--black);
}

.grid.line {
  border-bottom: solid 1px var(--grey-200);
  padding: 5px 0;
  margin: 5px 0;
}

.buchstabe span {
  font-family: "fabric";
  font-size: min(max(5rem, 13vw), 13rem);
  margin: 0;
  display: inline-block;
  height: 0.9em;
}

.buchstabe p {
  color: var(--black);
  margin: 0;
  line-height: 1;
}


.telefon {
  position: relative;
  margin-left: 40px;
  margin-bottom: 20px;
}

.telefon:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -40px;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  background-image: url(../images/icon_phone.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.footer .telefon:after, .menuadresse .telefon:after {
  background-image: url(../images/icon_phone_white.svg);
}

.menuadresse .telefon:after {
  width: 19px;
  height: 19px;
}


.footer .adresse:after, .menuadresse .adresse:after {
  background-image: url(../images/icon_map_white.svg);
}

.menuadresse .adresse:after {
  width: 19px;
  height: 19px;
}

.email {
  position: relative;
  margin-left: 40px;
  margin-bottom: 20px;
}

.email:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -40px;
  width: 25px;
  height: 19px;
  transform: translateY(-50%);
  background-image: url(../images/icon_mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.footer .email:after, .menuadresse .email:after {
  background-image: url(../images/icon_mail_white.svg);
}

.menuadresse .email:after {
  width: 19px;
  height: 19px;
}

.links a.button {
  display: block;
  margin: 0.5em 0 0 70px;
  font-size: min(max(1.4rem, 1.8vw), 1.8rem);
  color: var(--black);
}

.links a.button:hover {
  color: var(--black);
}

.grid.cols-7.rows-2.ueberuns_home  {
  grid-template-rows: auto 1fr;
}





  /* ///// FREEFORM ///// */

  .freeform-form button {
    color: #000 !important;
    border: 1px solid #000 !important;
    background-color: transparent !important;
    text-transform: none !important;
  }
  
  .freeform-form button:hover {
    color: #ffffff !important;
    background-color: #000 !important;
    border-color: #000 !important;
  }

  .freeform-form button[type="submit"]:hover::before {
    background-image: url('/static/images/dot-white.svg');
  }

  .freeform-row [class*="freeform-col-"] .freeform-label {
    font-family: var(--title-font) !important;
    font-weight: normal !important;
  }

  .freeform-row [class*="freeform-col-"] input, .freeform-row [class*="freeform-col-"] textarea, .freeform-row [class*="freeform-col-"] select {
    color: #212529 !important;
    background-color: #f0f0f0 !important;
    border: 0px solid #cbced0 !important;
    border-radius: 0 !important;
    border-bottom: solid 1px #8a8a8a !important;
}



/* ///// PASSWORTSCHUTZ ///// */
  
form#passwortschutz-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}


form#passwortschutz-form button {
  display: inline-flex;
}

input#password {
  max-width: 400px;
  background: #f0f0f0;
}

ul.errors {
  color: #da5e49;
  padding-left: 14px;
}



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











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


@media (prefers-color-scheme: dark) {

  :root {
    --white: #162028;
    --black: #fff;
    --green: #da5e49;
  }

  .header_fadein a.logo {
    display: none;
  }
  .header_fadein a.logo.dark {
    display: block;
  }

  a.button::before {
    background-image: url('/static/images/dot-white.svg');
  }

  a.button.current::before {
    background-image: url('/static/images/dot-orange.svg');
  }
  

  a.projektdetail::before {
      background-image: url('/static/images/dot-orange.svg');
  }

  a.button-white::before {
    background-image: url('/static/images/dot.svg');
  }

  .stoerer {
      color: var(--black);
  }

  .stoerer a.button-white, .project-title a.button-white {
      color: var(--black);
  }

  .stoerer a.button-white::before, .project-title a.button-white::before {
    background-image: url('/static/images/dot-white.svg');
  }

  .slider-content p {
    color: var(--black);
  }

  .swiper-slide h2 {
    color: var(--black);
  }

  footer img {
      filter: brightness(100);
  }

  img.social-icon {
      filter: brightness(0) invert(1);
  }

  .swiper-button-prev:after, .swiper-button-next:after {
      background-image: url(/static/images/arrow-right-white.svg);
  }

  .swiper-button-prev-1:after {
      background-image: url(/static/images/arrow-left-white.svg);
  }

  #slider .line1, #slider .line2 {
      background: var(--black);
  }

  .menu-text, .lightbox-text {
      color: var(--black);
  }
  
  .nav-background {
      background-image: url('/static/images/nav-background-dark.svg');
  }

  .footer-background {
      background-image: url('/static/images/footer-background-dark.svg');
  }

  .projekt-nav a.active::before, .projekt-nav a:hover::before {
    background-image: url('/static/images/plus-orange.svg');
  }

  .projekt-nav a:before {
    background-image: url('/static/images/plus-white.svg');
  }

  .header-logo {
      filter: brightness(100);
  }

  .fokus-slider .swiper-slide h2 {
      color: var(--black);
  }

  a.button:hover::before {
    background-image: url('/static/images/dot-orange.svg');
  }

  .infobox::before {
      background-image: url('/static/images/nav-background-dark.svg');
  }

  .close-button img {
    filter: brightness(100);
  }

  img.home-image-1, .home-image-1, img.home-image-2, .home-image-2, img.home-image-3, .home-image-3 {
    opacity: 0.8;
}

  .home-image-1:after {
    position: absolute;
    content: '';
    background: var(--dark);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    opacity: 0.1;
  }

  .home-image-2:after, .home-image-3:after {
    position: absolute;
    content: '';
    background: var(--dark);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    opacity: 0.1;
  }

  .right .home-image-1:after {
    border-radius: 0;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }

  img.sektor.dark {
    display: block;
  }
  
  img.sektor.bright {
    display: none;
  }

  .block-text ul li:before {
      background-image: url('/static/images/plus-white.svg');
  }

  .werkliste li:before {
    background-image: url('/static/images/plus-white.svg');
  }

  img.nav-logo.white {
    display: block;
  }
  
  img.nav-logo.dark {
    display: none;
  }

  .projekt-nav:after {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  background: -moz-linear-gradient(left,  rgba(22,32,40,0) 0%, rgba(22,32,40,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(22,32,40,0) 0%,rgba(22,32,40,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(22,32,40,0) 0%,rgba(22,32,40,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
  }

  .glow_ltr, .glow_rtl {
    display: none;
  }

  button[type="submit"]::before {
    background-image: url('/static/images/dot-white.svg');
  }

  button[type="submit"] {
    color: white;
  }

  .freeform-form button {
    color: #fff !important;
    border: 1px solid #fff !important;
}

.freeform-form button:hover {
  color: #000 !important;
  background-color: #fff !important;
  border-color: #fff !important;
}

  .freeform-form button[type="submit"]:hover::before {
    background-image: url('/static/images/dot.svg');
  }

  .freeform-row [class*="freeform-col-"] .freeform-label {
    color: #fff !important;
}

}




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

/* ///// CONTAINER AND TYPO ///// */


/* ///// HEADER ///// */


/* ///// NAVIGATION ///// */


/* ///// SLIDER ///// */


/* ///// STARTSEITE ///// */


/* ///// UNTERSEITEN ///// */


/* ///// FOOTER ///// */


/* ///// DIVERSES ///// */

}

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

  /* ///// CONTAINER AND TYPO ///// */
  
  
  /* ///// HEADER ///// */
  
  
  /* ///// NAVIGATION ///// */
  
  
  /* ///// SLIDER ///// */
  
  
  /* ///// STARTSEITE ///// */

  
  
  /* ///// UNTERSEITEN ///// */
  
  
  /* ///// FOOTER ///// */
  
  
  /* ///// DIVERSES ///// */
  
}

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

  /* ///// CONTAINER AND TYPO ///// */

  h2 {
    letter-spacing: 14px;
  }
  
  
  
  /* ///// HEADER ///// */

  img.header-logo {
    width: clamp(2em, 2.75vw, 2.75em);
  }
  
  
  /* ///// NAVIGATION ///// */
  
  
  /* ///// SLIDER ///// */
  
  
  /* ///// STARTSEITE ///// */

  .visionen p, .vertrauen p {
    margin-right: 0;
  }

  .visionen .block-text p, .vertrauen .block-text p {
    margin-right: clamp(4rem, 6vw, 8rem);
  }

  .zeitstrahl-wrapper {
    margin-left: 7%;
  }

  .kreativitaet p {
    margin-left: 0;
  }
  
  /* ///// UNTERSEITEN ///// */

  p.text {
    margin-top: 1px;
  }

  .block-text ul {
    margin: 0rem 0rem 0rem 5rem;
}

  .projekt-item {
    width: 44%;
    margin: 3%;
  }

  p.funktion, p.e-mail {
    font-size: min(max(0.8rem, 0.9vw, 1rem));
  }

  .werkliste li:before {
    width: 12px;
    height: 12px;
  }

  .projekt-nav a:before {
    margin-right: 12px;
    height: 13px;
    width: 12px;
    top: 2px;
}


  
  
  /* ///// FOOTER ///// */
  
  
  /* ///// DIVERSES ///// */
  
}

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

  /* ///// CONTAINER AND TYPO ///// */
  
  
  /* ///// HEADER ///// */

  .stoerer {
    width: clamp(16rem, 18vw, 18em);
  }
  
  
  /* ///// NAVIGATION ///// */
  
  
  /* ///// SLIDER ///// */
  
  
  /* ///// STARTSEITE ///// */
  
  
  /* ///// UNTERSEITEN ///// */
  
  
  /* ///// FOOTER ///// */
  
  
  /* ///// DIVERSES ///// */
  
}

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

  /* ///// CONTAINER AND TYPO ///// */
  
  
  /* ///// HEADER ///// */
  
  
  /* ///// NAVIGATION ///// */
  
  
  /* ///// SLIDER ///// */
  
  
  /* ///// STARTSEITE ///// */
  
  
  /* ///// UNTERSEITEN ///// */
  
  
  /* ///// FOOTER ///// */
  
  
  /* ///// DIVERSES ///// */
  
}

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

  /* ///// CONTAINER AND TYPO ///// */
  
  
  /* ///// HEADER ///// */
  
  .header_fadein a.logo {
    width: 3em;
  }
  
  /* ///// NAVIGATION ///// */
  
  
  /* ///// SLIDER ///// */

  .swiper-slide h2 {
    letter-spacing: 4px;
  }

  
  
  /* ///// STARTSEITE ///// */

  p.introtext-1 {
    max-width: 75%;
  }

  .introtext-2 {
    max-width: 55%;
  }

  .vertrauen a.button, .visionen a.button, .kreativitaet a.button {
    margin-top: 1.5rem;
    margin-left: 1rem;
  }

  .blog-content h4 {
      max-width: 80%;
  }
  
  
  /* ///// UNTERSEITEN ///// */

  span.date {
      margin: 1rem 0 0 2rem;
  }
  
  .projekt-item-content h4 {
      margin: 0rem 2rem 1rem;
  }

  .projekt-item-content a.button {
      margin-left: 4rem;
  }

  .projekt-item {
      width: 44%;
      margin: 10% 3%;
  }

  .projekt-item.quadrat {
      margin-top: 10rem;
  }

  .fokus-slider .swiper-container {
    height: calc(calc(var(--vh, 1vh) * 100) - 200px);
  }

  .infobox::before {
    width: 4rem;
    left: -4rem;
  }

  .infobox {
   width: 50%;
  }

  h4.jahr {
      top: -8px;
      left: -5px;
  }

  p.text {
      margin-top: 5px;
  }

  .team-item {
      flex: 0 31%;
      margin: 1%;
  }

  .team-bild {
      height: clamp(14em, 14vw, 20em);
  }

  .blog-uebersicht .projekt-item {
      margin-top: 5%;
  }

  .close-button img {
      width: 25px;
  }

  span.close-text {
      right: 0px;
  }

  .projekt-item.hoch {
      position: relative;
      width: 40%;
      margin: 5%;
      float: left;
      margin-left: 5%;
  }

  .projekt-item-bild {
    height: clamp(17em, 20vw, 30em);
}

.projekt-nav a:before {
  margin-right: 12px;
  height: 12px;
  width: 12px;
  top: 1px;
}
  
  /* ///// FOOTER ///// */

  .footer-background {
      background-size: 200%;
  }
  
  
  /* ///// DIVERSES ///// */
  
}

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

  /* ///// CONTAINER AND TYPO ///// */
  
  
  /* ///// HEADER ///// */
  
  
  /* ///// NAVIGATION ///// */
  
  
  /* ///// SLIDER ///// */
  
  
  /* ///// STARTSEITE ///// */
  
  
  /* ///// UNTERSEITEN ///// */
  
  
  /* ///// FOOTER ///// */
  
  
  /* ///// DIVERSES ///// */
  
}

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

  /* ///// CONTAINER AND TYPO ///// */
  
  
  /* ///// HEADER ///// */
  
  
  /* ///// NAVIGATION ///// */
  
  
  /* ///// SLIDER ///// */
  
  
  /* ///// STARTSEITE ///// */

  .home-image-1, .home-image-2, .home-image-3 {
    height: clamp(30em, 40vw, 50em); 
  }

  .visionen p, .vertrauen p {
    margin-right: clamp(4rem, 6vw, 8rem);
    margin-top: 2rem;
  }

  .kreativitaet p {
    margin-left: clamp(3rem, 5vw, 6rem);
  }

  #containerFull.kreativitaet, #containerFull.visionen {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .home-image-2 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .home-image-2:after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  section.blog {
      width: 95%!important;
      margin-left: 5%;
  }

  .swiper-button-next {
      margin-left: 4em;
      outline: none;
  }

  .swiper-button-prev {
    outline: none;
  }

  .swiper-button-next:focus, .swiper-button-prev:focus {
    outline: none;
  }

  .home-image-3 {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
  }

  .home-image-3:after {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
  }

  .visionen h2 {
      margin-left: 0;
  }

  .glow_ltr {
    top: -120%;
    left: -70%;
    width: 200%;
    height: 200%;
    opacity: 0.7;
}


  /* ///// UNTERSEITEN ///// */

  section.blog-header {
      padding: 10% 10% 0 10%;
  }

  .unternehmen-intro .introtext p {
      max-width: 85%;
  }

  .visionen p, .vertrauen p, .kreativitaet p, .vertrauen ul {
      margin-right: clamp(4rem, 6vw, 8rem);
      margin-left: clamp(4rem, 6vw, 8rem);
      margin-top: 1rem;
  }

  .block-text p {
      margin-top: 0;
  }

  .block-text ul li:before {
      width: 12px;
      height: 12px;
  }

  .infobox {
      width: calc(100% - 4rem);
  }

  .projekt-nav.vertical {
      display: none;
  }

  .team-item {
      flex: 0 46%;
      margin: 2%;
  }
  
  .zeitstrahl-wrapper {
    margin-left: 0;
  }
  
  /* ///// FOOTER ///// */
  
  
  /* ///// DIVERSES ///// */
  
}

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

  /* ///// CONTAINER AND TYPO ///// */
  
  
  /* ///// HEADER ///// */
  
  
  /* ///// NAVIGATION ///// */
  
  
  /* ///// SLIDER ///// */

  img.scrolldown {
      left: clamp(4em, 6vw, 8em);
      height: clamp(2em, 3vw, 3em);
  }
  
  /* ///// STARTSEITE ///// */

  p.introtext-1 {
      max-width: 100%;
  }

  .introtext-2 {
      max-width: 100%;
  }
  
  /* ///// UNTERSEITEN ///// */

  .projekt-nav-scroller {
    overflow-x: scroll;
    margin-left: 0;
    transform: none;
}

.projekt-nav-scroller ul {
justify-content: flex-start;
}

.projekt-nav-scroller li {
  margin: 0!important;
  padding-right: 10%;
}


  .header .projekt-nav {
    width: calc(100% - 100px);
    padding-left: 20px;
    position: relative;
  }

  .projekt-nav:after {
    display: block;
  }

.projekt-nav ul li {
    margin: 0 clamp(1rem, 1.25vw, 1.5rem);
  }
  
  #navigationWrap {
      width: 65%;
  }

  .blog-uebersicht .projekt-item {
      margin-top: 5%;
      width: 94%;
      margin-bottom: 5%;
  }

  .blog-uebersicht .projekt-item-bild {
    height: clamp(14em, 40vw, 30em);
}

.projekt-nav a:before {
  margin-right: 8px;
  height: 10px;
  width: 10px;
  top: 2px;
}
  
  /* ///// FOOTER ///// */
  
  
  /* ///// DIVERSES ///// */
  
}

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

  /* ///// CONTAINER AND TYPO ///// */
  
  
  /* ///// HEADER ///// */

  /*.projekt-nav {
    display: none;
  }

  .projekt-nav.mobile {
    display: block;
  }*/

  .projekt-nav ul {
    padding-inline-start: 0;
  }

  .projekt-nav.mobile ul li { 
    padding: 5px 10px; 
    z-index: 2; 
    transition: 0.5s all ease;
  }

  .projekt-nav.mobile ul {
      height: 1.5rem;
      width: 150px;
  }

  .projekt-nav.mobile ul li:not(.init) { 
      float: left; 
      width: 150px; 
      display: none; 
      background: var(--white); 
  }

  .projekt-nav.mobile ul li:not(.init):hover, ul li.selected:not(.init) { 
    background: var(--black); 
  }

  .projekt-nav.mobile li.init { 
    cursor: pointer; 
  }

  .projekt-nav.mobile .clicked a::before {
      transition: 0.5s all ease;
  }

    .projekt-nav.mobile .clicked a.active::before {
      transform: rotate(45deg);
  }
  
  
  /* ///// NAVIGATION ///// */
  
  
  /* ///// SLIDER ///// */
  
  
  /* ///// STARTSEITE ///// */
  
  
  /* ///// UNTERSEITEN ///// */
  
  
  /* ///// FOOTER ///// */
  
  
  /* ///// DIVERSES ///// */

  .vertrauen h2 {
    white-space: unset;
}
  
}

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

  /* ///// CONTAINER AND TYPO ///// */
  
  
  /* ///// HEADER ///// */
  
  
  /* ///// NAVIGATION ///// */
  
  
  /* ///// SLIDER ///// */
  
  
  /* ///// STARTSEITE ///// */
  
  .project-title {
    bottom: 5vh;
  }

  img.scrolldown {
    bottom: 5vh;
  }

  .lightbox-button, #slider .sticky {
    bottom: 35vh;
}

.blog .bild {
  width: calc(100% - 1rem);
  margin: 1rem 0.5rem 2rem 0.5rem;
}

  /* ///// UNTERSEITEN ///// */
  
  
  /* ///// FOOTER ///// */
  
  
  /* ///// DIVERSES ///// */
  
}

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

  /* ///// CONTAINER AND TYPO ///// */
  
  
  /* ///// HEADER ///// */

  .stoerer {
    width: clamp(16rem, 18vw, 18em);
    top: 7%;
    padding: 1rem 1.5rem;
    max-width: 55%;
  }

  .stoerer a.button-white {
    font-size: 0.8rem;
  }

  .stoerer p {
    font-size: 0.9rem;
  }
  
  
  /* ///// NAVIGATION ///// */
  
  
  /* ///// SLIDER ///// */
  
  
  /* ///// STARTSEITE ///// */
  
  
  /* ///// UNTERSEITEN ///// */
  
  
  /* ///// FOOTER ///// */
  
  
  /* ///// DIVERSES ///// */

  
}

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

  /* ///// CONTAINER AND TYPO ///// */
  
  
  /* ///// HEADER ///// */

  .sticky {
      right: 7%;
  }

  .header_fadein a.logo {
      padding: 0.5em 0;
  }

  .header_fadein a.logo {
      width: 2em;
  }
  
  
  /* ///// NAVIGATION ///// */

  #navigationWrap {
      width: 94%;
  }
  
  .menu-container nav ul li {
      letter-spacing: 3px;
  }
  
  /* ///// SLIDER ///// */

  .swiper-slide h2 {
    font-size: clamp(1.25rem, 3vw, 3.5rem);
    letter-spacing: 3px;
    line-height: 1.1;
}

.project-title a.button-white {
  margin-right: 0rem;
}

.block-text p, .unternehmen-intro .introtext p {
  line-height: 1.5;
}

.slider-content p {
  font-size: clamp(1.1rem, 1.5vw, 1.75rem);
}

.slider-content {
  width: 60%;
}

  img.scrolldown {
      left: 7%;
      height: clamp(1.5em, 3vw, 3em);
  }

  .slider-content {
      left: 7%;
  }

  .fokus-slider .swiper-slide h2 {
    font-size: clamp(1.25rem, 3vw, 3.5rem);
    letter-spacing: 3px;
    line-height: 1.1;
}

  .swiper-button-prev:after, .swiper-button-next:after {
      width: 25px;
      height: 25px;
  }

  .project-title {
      right: 7%;
  }

  #slider .sticky {
      right: 7%;
  }

  .lightbox-button {
      right: 7%;
  }

  .fokus-slider .swiper-container {
    height: calc(calc(var(--vh, 1vh) * 100) - 150px);
}

  
  /* ///// STARTSEITE ///// */

  img.header-logo {
      width: 2.5em;
  }

  .vertrauen h2 {
      margin-left: 1rem;
  }


  .visionen h2 {
      font-size: 2.25rem;
      letter-spacing: 10px;
      margin-left: -5rem;
  }

  .visionen p, .vertrauen p, .kreativitaet p, .vertrauen ul {
      margin-left: 7%;
      margin-right: 7%;
  }

  .home-image-1, .home-image-2, .home-image-3 {
      height: clamp(22em, 40vw, 50em);
  }

  .blog .bild {
    margin: 5% 5% 5% 0;
    width: 95%;
}

.blog h2 {
  margin-left: 2%;
  letter-spacing: 8px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

  .swiper-buttons {
      right: 0;
      transform: none;
  }

  span.date {
      margin: 0rem 0 0 1rem;
  }
  
  .blog-content h4 {
      max-width: 100%;
      margin: 1rem 1rem 0rem;
  }

  .blog a.button {
    margin-left: 20px;
    margin-top: 1em;
    margin-bottom: 1rem;
}

.blog-content a.button {
  margin-top: 1em;
  margin-left: 2rem;
}


  
  /* ///// UNTERSEITEN ///// */

  .block-text ul {
    margin: 0rem 2rem 0rem 2rem;
}

.infobox::before {
  width: 3rem;
  left: -3rem;
}

.infobox {
  width: calc(94% - 3rem);
}

.close-button {
  right: 2%;
  bottom: 5%;
}

.projekt-details {
  position: relative;
  float: left;
  width: 100%;
  height: 85%;
  overflow: auto;
  padding-right: 5%;
}

/*
.projekt-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
*/

.projekt-nav a:before {
  margin-right: 4px;
  height: 8px;
  width: 7px;
  top: 3px;
}

section.masonry {
  position: relative;
  float: left;
  margin: 10% 7% 10% 7%;
  width: 86%;
}

.masonry-item {
  width: 100%;
}

.projekt-item {
  width: 94%;
  margin: 10% 3% 15%;
}

.projekt-item.quadrat {
  margin-top: 5%;
}

.projekt-item.wide {
  width: 94%;
  float: right;
  margin-right: 3%;
}

.projekt-item.hoch {
  width: 94%;
  margin: 3%;
  margin-left: 3%;
}

.unternehmen-facts {
  display: flex;
  flex-direction: column;
}

.fact {
  margin-top: 1rem;
}

.team-item {
  flex: 0 96%;
  margin: 2%;
}

.team-bild {
  height: clamp(16em, 14vw, 20em);
}

.projekt-header h1 {
  padding-left: 0;
  padding-right: 5%;
}

.projekt-header .projekt-typ {
  padding-left: 0;
  margin-bottom: 0.5rem;
}

.blog-item-content span.date {
  margin: 0rem 0 0 1rem;
}

.blog-item-content h4 {
  margin: 1rem 1rem 1rem;
}

.blog-item-content a.button {
  margin-left: 2rem;
}

h2.Zusammenarbeit, h2.Leistungsumfang {
  font-size: 1.6rem;
  letter-spacing: 6px;
  margin-left: 1.8rem;
}
  
  /* ///// FOOTER ///// */

  footer {
      padding: 10% 7% 5% 7%;
  }

  .footer-links .divider {
    margin: 0 1rem;
  }

  img.scrolltotop {
    height: clamp(1.5em, 3vw, 3em);
}

.footer p.adresse {
  margin-top: 2rem;
}

.footer-background {
  background-size: 400%;
  height: 10em;
}

p.kontakt {
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  margin-top: 1em;
}
  
  
  /* ///// DIVERSES ///// */
  
}

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

  /* ///// CONTAINER AND TYPO ///// */
  
  h1, h2, h3, h4, h5, h6 {
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
  
  /* ///// HEADER ///// */
  
  
  /* ///// NAVIGATION ///// */
  
  
  /* ///// SLIDER ///// */
  
  
  /* ///// STARTSEITE ///// */
  
  .vertrauen h2, .kreativitaet h2, .visionen h2 {
    font-size: 1.9rem;
    letter-spacing: 7px;
}
  
  /* ///// UNTERSEITEN ///// */
  
  h2.Zusammenarbeit, h2.Leistungsumfang {
    font-size: 1.3rem;
    letter-spacing: 5px;
    margin-left: 1.4rem;
}
  
  /* ///// FOOTER ///// */
  
  
  /* ///// DIVERSES ///// */
  
}

@media screen and (max-width: 900px) and (orientation: landscape) {

  .swiper-container.swiper1 {
    height: 60vw;
  }

  #slider .sticky, .lightbox-button {
    bottom: 50vh;
  }

  .project-title {
    bottom: 5vh;
}

.swiper-slide h2 {
  font-size: clamp(1.5rem, 3vw, 3.5rem);
}

.swiper-slide h2 {
  font-size: clamp(1.5rem, 3vw, 3.5rem);
}

.slider-content p {
  font-size: clamp(1rem, 1.5vw, 1.75rem);
}

.slider-buttons {
  margin-bottom: 0;
}

.slider-logo {
  width: clamp(3rem, 6vw, 8em);
  margin-bottom: 0em;
}

.fokus-slider .swiper-container {
  height: 60vw;
}

.menu-container {
  height: 70vw;
}

p.kontakt {
  padding-bottom: 2rem;
}

}