@charset "UTF-8";
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50.2vw;
  margin-right: -50vw;
}

body {
  font-family: "Lato";
}

.glitch {
  animation: glitch 1s linear 4s 1;
  position: relative;
}

/*
.glitch:hover {
    animation: 1s glitch linear infinite;
}
*/
@keyframes glitch {
  2%, 64% {
    transform: translate(2px, 0) skew(0deg);
  }
  4%, 60% {
    transform: translate(-2px, 0) skew(0deg);
  }
  62% {
    transform: translate(0, 0) skew(5deg);
  }
  0%, 5%, 100% {
    transform: translate(0, 0) skew(0deg);
  }
}
.glitch:before {
  animation: glitchTop 1.2s linear 4s 1;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.glitch:before,
.glitch:after {
  pointer-events: none;
  mix-blend-mode: multiply;
  content: attr(data-title);
  position: absolute;
  left: 0;
  color: #000;
}

.glitch:after {
  animation: glitchBottom 1.2s linear 4s 1;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  bottom: 0;
  color: #000;
}

/*

.glitch:hover:before {
    animation: 1s glitchTop linear infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.glitch:hover:after{
    animation: 1.5s glitchBotom linear infinite;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

*/
@keyframes glitchTop {
  0%, 5%, 100% {
    transform: translate(0, 0) skew(0deg);
  }
  2%, 64% {
    transform: translate(2px, -2px);
  }
  4%, 60% {
    transform: translate(-2px, 2px);
  }
  1%, 62% {
    transform: translate(13px, -1px) skew(-13deg);
  }
}
@keyframes glitchBottom {
  0%, 5%, 100% {
    transform: translate(0, 0) skew(0deg);
  }
  2%, 64% {
    transform: translate(-2px, 2px);
  }
  4%, 60% {
    transform: translate(2px, -2px);
  }
  1%, 62% {
    transform: translate(-22px, 5px) skew(21deg);
  }
}
.hero {
  margin-bottom: 60px;
  background-blend-mode: soft-light;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero span {
  cursor: default;
  user-select: none;
  display: inline-block;
  max-width: 13em;
  font-weight: bold;
  font-size: 68px;
  line-height: 1.15em;
  text-align: center;
  width: 100%;
}
.hero--frankfurt {
  background: url(https://source.unsplash.com/q18A6PEaQ6U), repeating-linear-gradient(-45deg, #ff5511, #ffffff 100%);
  background-size: cover;
  color: #000;
}
.hero--blue {
  background: url(https://source.unsplash.com/zrj-TPjcRLA), repeating-linear-gradient(-45deg, #93d3fd, #4ba8ff 100%);
  background-size: cover;
  color: #fff;
}
.hero--arbeitsweise {
  background: url(https://source.unsplash.com/vddccTqwal8), repeating-linear-gradient(-45deg, #93d3fd, #4ba8ff 100%);
  background-size: cover;
  color: #fff;
}
.hero--leistungen {
  background: url(https://source.unsplash.com/3kzlCL3rj8A), repeating-linear-gradient(-45deg, #93d3fd, #4ba8ff 100%);
  background-size: cover;
  color: #fff;
}

.capabilities {
  padding: 0;
  display: flex;
  margin-top: 44px;
  margin-bottom: 0px;
  flex-wrap: wrap;
}
.capabilities li {
  list-style: none;
}
.capabilities > * {
  min-height: 100px;
  min-width: 100%;
}
.capabilities img {
  vertical-align: top;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .capabilities > * {
    flex: 1 1 0px;
    min-width: 30%;
  }
}

.hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: -1;
  margin-top: -180px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(245, 81, 17, 0.55) 100%), url("/img/skyline.jpg") center bottom/cover no-repeat;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 2.5rem;
  color: #000;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: normal;
  line-height: 1.25;
  margin: 0;
  max-width: 20em;
}

.hero-quote {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.15);
  top: 1.5rem;
  left: 2.2rem;
  font-size: 2.7em;
  color: #111;
  opacity: 0.8;
  font-family: serif;
  font-weight: bold;
  z-index: 3;
}

@media (max-width: 700px) {
  .hero {
    min-height: 220px;
  }
  .hero-content h1 {
    font-size: 1.5em;
  }
  .hero-quote {
    font-size: 1.5em;
    left: 1em;
    top: 1em;
  }
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.main-nav {
  display: flex;
  gap: 2rem;
  font-size: 1.1em;
  font-weight: 400;
}

.main-nav a {
  color: #222;
  text-decoration: none;
  padding: 0.3em 0.7em;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}

.main-nav a:hover,
.main-nav a:focus {
  background: #f51;
  color: #fff;
}

.highlight-box {
  background: #f51;
  color: #fff;
  border-radius: 10px;
  padding: 1.5em 2em;
  margin-bottom: 2em;
  box-shadow: 0 2px 12px rgba(245, 81, 17, 0.08);
  font-size: 1.15em;
  font-weight: 400;
}

.mindful {
  max-width: 515px;
  padding: 12px 32px;
  background-color: #fff;
  color: #000;
}
.mindful h2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.mindful p {
  font-size: 16px;
}

.people {
  display: flex;
  margin-top: 32px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  line-height: 0;
}
.people picture {
  max-width: 33.3333333333%;
}
@media screen and (min-width: 768px) {
  .people {
    flex-wrap: nowrap;
  }
  .people picture {
    max-width: none;
  }
}

.people picture img,
.people picture source {
  width: 100%;
  filter: grayscale(20%);
}

.footer {
  margin-top: 4rem;
  padding: 4rem 0;
  background: #fff;
}
.footer h3 {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.footer-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.job-areas {
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-areas li {
  margin-bottom: 0.5rem;
}
.job-areas .arrow-link {
  color: #f51;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.job-areas .arrow-link:after {
  content: "→";
  margin-left: 0.5rem;
}
.job-areas .arrow-link:hover {
  text-decoration: underline;
}

.contact-info p {
  margin: 0 0 1.5rem;
}
.contact-info a {
  color: inherit;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: inherit;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

::selection {
  color: #ffffff;
  background: #f51;
}

.cm-panel {
  margin: 1em 0em;
  display: block;
  background-color: #eaeaea;
  padding: 4px;
  border-radius: 3px 3px 3px 0;
  line-height: 1;
  font-size: 14px;
  min-height: 1em;
}

.link-block {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.link-inherit {
  color: inherit;
  text-decoration: inherit;
}

@keyframes link-block {
  0% {
    background: linear-gradient(#eec7c7, #eec7c7) left bottom/0% 0.05em no-repeat;
    left: 0;
  }
  30% {
    background: linear-gradient(#f51, #f51) left bottom/100% 0.05em no-repeat;
    left: 12px;
  }
  60% {
    background-size: 100% 0.05em;
    left: -4px;
  }
  100% {
    background-size: 100% 0.05em;
    left: 0px;
  }
}
@keyframes link-block--icon {
  0% {
    background: linear-gradient(#eec7c7, #eec7c7) left bottom/0% 0.05em no-repeat;
    left: 0;
  }
  30% {
    background: linear-gradient(#f51, #f51) left bottom/100% 0.05em no-repeat;
    left: calc(32px + 1%);
  }
  60% {
    background-size: 100% 0.05em;
    left: calc(32px - 1%);
  }
  100% {
    background-size: 100% 0.05em;
    left: 32px;
  }
}
.link-block:hover::before {
  animation-name: link-block;
  animation-duration: 800ms;
  animation-timing-function: ease-in-out;
  background: linear-gradient(#f51, #f51) left bottom/100% 0.1em no-repeat;
  background-size: 100% 0.05em;
}

.link-block--icon:hover::before {
  animation-name: link-block--icon;
}

.link-block:focus::before {
  background: linear-gradient(#1566A4, #1566A4) left bottom/100% 0.05em no-repeat;
}

.link-curtain span {
  overflow: hidden;
  font-weight: 500;
}

.link-curtain span::before,
.link-curtain span::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.link-curtain span::before {
  border-top: 2px solid #f51;
  background: transparent;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: translateY(calc(100% - 2px));
  transform: translateY(calc(100% - 2px));
}

.link-curtain span:hover::before,
.link-curtain span:focus::before {
  border-top: 12px solid #f51;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.link-curtain span:hover::before,
.link-curtain span:focus::before,
.link-curtain span:hover::after,
.link-curtain span:focus::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.link-curtain span:hover::before,
.link-curtain span:focus::before {
  border-top: 12px solid #f51;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.link-curtain span::after {
  z-index: -1;
  background: rgba(0, 255, 0, 0.7);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.link-curtain span:hover::after,
.link-curtain span:focus::after {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.block {
  max-width: 100%;
  border-radius: 6px 6px 6px 0;
}

.highlight {
  font-weight: bold;
  background: linear-gradient(to right, red, yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.questions {
  margin-bottom: 68px;
  padding: 68px 0;
  color: #fff;
  text-align: center;
  font-size: 1.3125rem;
}
.questions .h1 {
  font-weight: normal;
  line-height: 1.2em;
  margin: 0;
}
.questions > .max-width {
  max-width: 520px;
}

.site-frame {
  max-width: 1180px;
  margin: 0 auto;
  background: transparent;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: relative;
  z-index: 1;
}
.site-frame .header-bar {
  z-index: 2;
  position: relative;
}
.site-frame main {
  background: #fff;
  position: relative;
  z-index: 1;
  border-radius: 18px;
}

@media (max-width: 1240px) {
  .site-frame {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.container, .max-width {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
  width: 100%;
}

.logo {
  outline: none;
}

.logo:focus .t {
  fill: transparent;
  stroke: #f51;
  stroke-width: 5px;
  animation: draw 0.6s forwards;
  animation-timing-function: ease-in-out;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.nav__menu {
  touch-action: none;
}

.image {
  max-width: 500px;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.cta {
  font-size: 1rem;
  margin: 28px;
  text-decoration: none;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  padding: 0 40px;
  background-color: #fff;
  color: #c40;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  transition: color 200ms ease, background-color 200ms ease;
}

.cta:hover {
  color: #fff;
  background-color: #f51;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

.cta2 {
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  color: #ffffff;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.cta2 {
  color: inherit;
  font-weight: normal;
  display: inline-block;
  position: relative;
  letter-spacing: 0.5px;
  text-decoration: none;
  align-self: flex-start;
}

.cta2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, transparent) left bottom/100% 0.1em no-repeat;
}

@keyframes cta2 {
  0% {
    background: linear-gradient(#f51, #f51) left bottom/0% 0.05em no-repeat;
    left: 0;
  }
  30% {
    background: linear-gradient(#ffffff, #ffffff) left bottom/100% 0.05em no-repeat;
    left: 12px;
  }
  60% {
    background-size: 100% 0.05em;
    left: -4px;
  }
  100% {
    background-size: 100% 0.05em;
    left: 0px;
  }
}
.cta2:hover::before {
  animation-name: cta2;
  animation-duration: 800ms;
  animation-timing-function: ease-in-out;
  background: linear-gradient(#ffffff, #ffffff) left bottom/100% 0.1em no-repeat;
  background-size: 100% 0.05em;
}

.cta2:focus::before {
  background: linear-gradient(#ffffff, #ffffff) left bottom/100% 0.05em no-repeat;
}

.tags {
  margin: 0;
  padding: 0;
  list-style: none;
  word-break: break-all;
}
.tags__li {
  color: #f51;
  font-weight: bold;
  display: inline;
  border: 2px solid #f51;
  border-radius: 1em;
  margin-right: 10px;
  padding: 4px 10px 6px;
  line-height: 2.4em;
  white-space: nowrap;
}
.tags__li:hover {
  color: #fff;
  background-color: #f51;
  cursor: default;
}

body.logo--black .logo .t {
  transform: translateY(50px);
  fill: #000000;
  transition: transform 0.2s ease-out;
}
body.logo--black .logo .a {
  transform: translateY(400px);
  opacity: 0;
  fill: #000000;
  transition: opacity 0.2s ease-in-out, transform 0.4s ease-in-out;
}
body.logo--black .logo:focus .a,
body.logo--black .logo:hover .a {
  transform: translateY(0);
  opacity: 1;
}
body.logo--black .logo:focus .t,
body.logo--black .logo:hover .t {
  transform: translateY(0);
  opacity: 1;
}

.main-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
  text-align: center;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 1;
  margin-top: -180px;
}
.main-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 85, 17, 0.05) 0%, transparent 70%);
  z-index: 0;
}
.main-hero__gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 85, 17, 0.75) 0%, transparent 80%);
  animation: pulse 4s ease-in-out infinite;
  mix-blend-mode: multiply;
}
.main-hero__gradient-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 60%, rgba(255, 85, 17, 0.75) 0%, transparent 90%);
  animation: pulse 4s ease-in-out infinite;
  animation-delay: -2s;
  mix-blend-mode: multiply;
}
.main-hero__content {
  position: relative;
  color: #222;
  padding: 4rem 2rem;
  width: 100%;
  z-index: 2;
}
.main-hero .intro-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.mega-headline {
  font-size: 5rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: bold;
  background: linear-gradient(135deg, #222 0%, #444 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 108, 47, 0.1);
  letter-spacing: -0.02em;
}

.intro-text {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  padding: 0;
  list-style: none;
}

.service-card {
  position: relative;
  background: #f8f8f8;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px);
  background: #FF6C2F;
  color: white;
}
.service-card:hover .service-icon {
  transform: translateY(-10px);
}
.service-card:hover .service-icon img {
  filter: brightness(10);
}
.service-card:hover h3 {
  transform: translateY(-10px);
}
.service-card:hover .service-overlay {
  opacity: 1;
  transform: translateY(0);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  transition: transform 0.4s ease;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.2);
  transition: filter 0.4s ease;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.4s ease;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

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