<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@import 'lib/grid.css';
@import 'lib/normalize.css';

@import "components/header.css";
@import "components/logo.css";
@import "components/heading.css";
@import "components/picture.css";
@import "components/heading-sub.css";
/* @import "components/form.css";
@import "components/social-links.css"; */
@import "components/triggers.css";

* {
  box-sizing: border-box;
  font-family: 'Crimson Pro', serif;
}

html {
  min-height: 100%;
  width: 100%;
  background-color: #1E3036;
  background-image: url('../images/GBB_BOSCH_Element_4C.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  }

body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
  width: 100%;
}

main {
  min-width: 100%;
  min-height: calc(100% - 100px);
  z-index: 1;
  margin-top: 120px;
}

@media screen and (max-width: 1600px) {
  .heading {
    margin-top: 0;
  }
  header.header {
    padding-top: 60px;
  }
}

@media screen and (max-width: 500px) {
  main {
    margin-top: 100px;
  }
  .social-links {
    align-items: center;
    justify-content: center;
  }
}

/* ANIMATION TIMELINE */

.header {
  transition: opacity .6s cubic-bezier(0.785, 0.135, 0.15, 0.86), transform .6s ease;
}

.heading .word {
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: calc(.5s + (30ms * var(--word-index)));
}

.social-links a {
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: calc(.2s + (30ms * var(--logo-index)));
}

.heading-sub {
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: .8s;
}

.triggers .trigger {
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: 1.1s;
}

.form {
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: 1.3s;
}




/* ANIMATIONS */

.heading_active .word {
  opacity: 0;
  transform: translateY(20px);
}

.header_active {
  opacity: 0;
  transform: translateY(-40px);
}

.heading_active {
  opacity: 0;
}
.heading-sub_active {
  opacity: 0;
  transform: translateY(40px);
}

.triggers_active .trigger {
  opacity: 0;
  transform: translateY(20px);
}

.form_active {
  opacity: 0;
  transform: translateY(40px);
}

.social-links_active a {
  opacity: 0;
  transform: translateY(40px);
}

.form__submit_text {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.form__submit_spinner {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.state-show-spinner .form__submit_spinner {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.state-show-spinner .form__submit_text {
  transform: translateX(10px);
  opacity: 0 !important;
}

.spinner,
.spinner:after {
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

.spinner {
  display: block;
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999px;
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  border-right: 1px solid rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  border-left: 1px solid #ffffff;
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
}

/* keyframes */

@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
</pre></body></html>