.hero {
  height: 70vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
.hero .hero-mute-toggle {
  display: none;
}
.hero .background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.hero .background.type-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.hero .background.type-html_video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.hero .background.type-youtube_video iframe {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.hero .content {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* for centering */
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.hero .content .title {
  margin: 0;
  max-width: 9ch;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: clamp(3em, 10vw, 9em);
  line-height: 1em;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.hero .content .text,
.hero .content .secondary_text {
  color: #fff;
  font-size: clamp(2em, 5vw, 3em);
}
.hero .scroll {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  text-align: center;
}
.hero .scroll .scroll-icon {
  width: 30px;
  animation: animateArrow 1.5s infinite linear;
}
.hero .scroll .scroll-icon path {
  stroke: #fff;
}
.hero.home-hero .content {
  background: rgba(255, 255, 255, 0.8);
  mix-blend-mode: screen;
}
.hero.home-hero .content .title {
  color: black;
  transform: scale(0.2);
  opacity: 0;
  animation: scale-in 1s forwards;
}
.hero.hero-project .content {
  justify-content: center;
  align-items: end;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
  left: 50%;
  transform: translateX(calc(-50% - var(--container-padding)));
  flex-direction: column-reverse;
  gap: 4px;
}
.hero.hero-project .content .title {
  text-align: right;
  font-size: clamp(40px, 5vw, 57px);
  max-width: none;
}
.hero.hero-project .content .text {
  text-align: right;
  font-size: 20px;
}
.hero.hero-project .content .secondary_text {
  font-size: 20px;
  text-align: right;
  position: absolute;
  bottom: 45px;
  right: 0;
}
.hero.hero-project .content .secondary_text p {
  margin: 0;
}
.hero.hero-project .background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.2901960784), transparent);
}
.hero.hero-fixed {
  overflow: visible;
}
.hero.hero-fixed .background.type-image img {
  position: fixed;
  object-position: top;
  height: auto;
  left: 0;
}
@media screen and (max-width: 768px) {
  .hero.hero-fixed .background.type-image img {
    height: 100%;
  }
}
.hero.hero-fixed::before {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  bottom: -300px;
  width: 100%;
  height: 300px;
  background: #000;
  pointer-events: none;
  z-index: 2;
}
.hero.hero-fixed::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.hero.hero-full_height {
  height: 100vh;
}
.hero.hero-team {
  height: 80vh;
}
.hero.hero-team .background.type-image img {
  height: 100%;
}
.hero.hero-agentur .content {
  justify-content: end;
  top: auto;
  bottom: 10vh;
}

/* Stacking scroll effect for page-id-913 */
.page-id-913 {
  /* Footer should appear normally after sections */
}
.page-id-913 .page-sections {
  position: relative;
  /* Spacer elements created by JavaScript */
  /* Normal content after heroes */
}
.page-id-913 .page-sections .hero {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
  background-color: black;
}
.page-id-913 .page-sections .hero .hero-mute-toggle {
  display: block;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.page-id-913 .page-sections .hero .hero-mute-toggle:hover {
  background-color: rgb(255, 255, 255);
  transform: scale(1.1);
}
.page-id-913 .page-sections .hero .hero-mute-toggle svg {
  width: 24px;
  height: 24px;
  stroke: #000;
  transition: opacity 0.3s ease;
}
.page-id-913 .page-sections .hero .hero-mute-toggle .icon-muted {
  display: block;
}
.page-id-913 .page-sections .hero .hero-mute-toggle .icon-unmuted {
  display: none;
}
.page-id-913 .page-sections .hero .hero-mute-toggle.unmuted .icon-muted {
  display: none;
}
.page-id-913 .page-sections .hero .hero-mute-toggle.unmuted .icon-unmuted {
  display: block;
}
.page-id-913 .page-sections .hero.video-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(30, 30, 30, 0.95) 25%, rgb(60, 60, 60) 50%, rgba(30, 30, 30, 0.95) 75%, rgba(0, 0, 0, 0.9) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
.page-id-913 .page-sections .hero.video-loading .hero-mute-toggle {
  display: none !important;
}
.page-id-913 .page-sections .hero:nth-child(1) {
  z-index: 1;
}
.page-id-913 .page-sections .hero:nth-child(2) {
  z-index: 2;
}
.page-id-913 .page-sections .hero:nth-child(3) {
  z-index: 3;
}
.page-id-913 .page-sections .hero:nth-child(4) {
  z-index: 4;
}
.page-id-913 .page-sections .hero:nth-child(5) {
  z-index: 5;
}
.page-id-913 .page-sections .hero:nth-child(6) {
  z-index: 6;
}
.page-id-913 .page-sections .hero:nth-child(7) {
  z-index: 7;
}
.page-id-913 .page-sections .hero:nth-child(8) {
  z-index: 8;
}
.page-id-913 .page-sections .hero:nth-child(9) {
  z-index: 9;
}
.page-id-913 .page-sections .hero:nth-child(10) {
  z-index: 10;
}
.page-id-913 .page-sections .hero:nth-child(11) {
  z-index: 11;
}
.page-id-913 .page-sections .hero:nth-child(12) {
  z-index: 12;
}
.page-id-913 .page-sections .hero:nth-child(13) {
  z-index: 13;
}
.page-id-913 .page-sections .hero:nth-child(14) {
  z-index: 14;
}
.page-id-913 .page-sections .hero:nth-child(15) {
  z-index: 15;
}
.page-id-913 .page-sections .hero:nth-child(16) {
  z-index: 16;
}
.page-id-913 .page-sections .hero:nth-child(17) {
  z-index: 17;
}
.page-id-913 .page-sections .hero:nth-child(18) {
  z-index: 18;
}
.page-id-913 .page-sections .hero:nth-child(19) {
  z-index: 19;
}
.page-id-913 .page-sections .hero:nth-child(20) {
  z-index: 20;
}
@media (max-width: 768px) {
  .page-id-913 .page-sections .hero {
    height: 100vh;
    min-height: 100vh;
  }
}
.page-id-913 .page-sections .hero-spacer {
  height: 10vh !important;
  pointer-events: none;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .page-id-913 .page-sections .hero-spacer {
    height: 100vh;
  }
}
.page-id-913 .page-sections .section {
  position: relative;
  z-index: 1000;
  min-height: 50vh;
}
.page-id-913 .page-sections .section:first-of-type {
  background: white;
  padding-top: 2rem;
  margin-top: 0;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
}
.page-id-913 .page-sections .section:not(.bg-transparent) {
  background: white;
}
.page-id-913 .footer {
  position: relative;
  z-index: 1001;
}

@keyframes animateArrow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}
@keyframes scale-in {
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

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