/* frontend/styles/index.css */
.cc-window {
  opacity: 1;
  transition: opacity 1s ease;
}
.cc-window.cc-invisible {
  opacity: 0;
}
.cc-animate.cc-revoke {
  transition: transform 1s ease;
}
.cc-animate.cc-revoke.cc-top {
  transform: translateY(-2em);
}
.cc-animate.cc-revoke.cc-bottom {
  transform: translateY(2em);
}
.cc-animate.cc-revoke.cc-active.cc-bottom,
.cc-animate.cc-revoke.cc-active.cc-top,
.cc-revoke:hover {
  transform: translateY(0);
}
.cc-grower {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s;
}
.cc-link,
.cc-revoke:hover {
  text-decoration: underline;
}
.cc-revoke,
.cc-window {
  position: fixed;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5em;
  display: flex;
  flex-wrap: nowrap;
  z-index: 9999;
}
.cc-window.cc-static {
  position: static;
}
.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  flex-direction: column;
}
.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  flex-direction: row;
}
.cc-revoke {
  padding: .5em;
}
.cc-header {
  font-size: 18px;
  font-weight: 700;
}
.cc-btn,
.cc-close,
.cc-link,
.cc-revoke {
  cursor: pointer;
}
.cc-link {
  opacity: .8;
  display: inline-block;
  padding: .2em;
}
.cc-link:hover {
  opacity: 1;
}
.cc-link:active,
.cc-link:visited {
  color: #000;
  color: initial;
}
.cc-btn {
  display: block;
  padding: .4em .8em;
  font-size: .9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}
.cc-banner .cc-btn:last-child {
  min-width: 140px;
}
.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}
.cc-highlight .cc-btn:first-child:focus,
.cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}
.cc-close {
  display: block;
  position: absolute;
  top: .5em;
  right: .5em;
  font-size: 1.6em;
  opacity: .9;
  line-height: .75;
}
.cc-close:focus,
.cc-close:hover {
  opacity: 1;
}
.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: .5em;
  border-bottom-right-radius: .5em;
}
.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em;
}
.cc-revoke.cc-left {
  left: 3em;
  right: auto;
  right: initial;
}
.cc-revoke.cc-right {
  right: 3em;
  left: auto;
  left: initial;
}
.cc-top {
  top: 1em;
}
.cc-left {
  left: 1em;
}
.cc-right {
  right: 1em;
}
.cc-bottom {
  bottom: 1em;
}
.cc-floating > .cc-link {
  margin-bottom: 1em;
}
.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}
.cc-window.cc-floating .cc-compliance {
  flex: 1 0 auto;
}
.cc-window.cc-banner {
  align-items: center;
}
.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}
.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}
.cc-banner .cc-message {
  flex: 1 1;
}
.cc-compliance {
  display: flex;
  align-items: center;
  align-content: space-between;
}
.cc-compliance > .cc-btn {
  flex: 1 1;
}
.cc-btn + .cc-btn {
  margin-left: .5em;
}
@media print {
  .cc-revoke,
  .cc-window {
    display: none;
  }
}
@media screen and (max-width:900px) {
  .cc-btn {
    white-space: normal;
  }
}
@media screen and (max-width:414px) and (orientation:portrait), screen and (max-width:736px) and (orientation:landscape) {
  .cc-window.cc-top {
    top: 0;
  }
  .cc-window.cc-bottom {
    bottom: 0;
  }
  .cc-window.cc-banner,
  .cc-window.cc-left,
  .cc-window.cc-right {
    left: 0;
    right: 0;
  }
  .cc-window.cc-banner {
    flex-direction: column;
  }
  .cc-window.cc-banner .cc-compliance {
    flex: 1 1;
  }
  .cc-window.cc-floating {
    max-width: none;
  }
  .cc-window .cc-message {
    margin-bottom: 1em;
  }
  .cc-window.cc-banner {
    align-items: initial;
  }
}
.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}
.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  flex: none;
}
.cc-theme-classic .cc-btn {
  border-radius: 5px;
}
.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}
.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}
.cc-theme-edgeless.cc-window {
  padding: 0;
}
.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em 2em 1.5em;
}
.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: .8em 1.8em;
  height: 100%;
}
.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}
.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}
.cc-window {
  opacity: 1;
  transition: opacity 1s ease;
}
.cc-window.cc-invisible {
  opacity: 0;
}
.cc-animate.cc-revoke {
  transition: transform 1s ease;
}
.cc-animate.cc-revoke.cc-top {
  transform: translateY(-2em);
}
.cc-animate.cc-revoke.cc-bottom {
  transform: translateY(2em);
}
.cc-animate.cc-revoke.cc-active.cc-bottom,
.cc-animate.cc-revoke.cc-active.cc-top,
.cc-revoke:hover {
  transform: translateY(0);
}
.cc-grower {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s;
}
.cc-link,
.cc-revoke:hover {
  text-decoration: underline;
}
.cc-revoke,
.cc-window {
  position: fixed;
  overflow: hidden;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5em;
  display: flex;
  flex-wrap: nowrap;
  z-index: 9999;
}
.cc-window.cc-static {
  position: static;
}
.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  flex-direction: column;
}
.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  flex-direction: row;
}
.cc-revoke {
  padding: 0.5em;
}
.cc-header {
  font-size: 18px;
  font-weight: 700;
}
.cc-btn,
.cc-close,
.cc-link,
.cc-revoke {
  cursor: pointer;
}
.cc-link {
  opacity: .8;
  display: inline-block;
  padding: 0.2em;
}
.cc-link:hover {
  opacity: 1;
}
.cc-link:active,
.cc-link:visited {
  color: #000;
  color: initial;
}
.cc-btn {
  display: block;
  padding: .4em .8em;
  font-size: .9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}
.cc-banner .cc-btn:last-child {
  min-width: 140px;
}
.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}
.cc-highlight .cc-btn:first-child:focus,
.cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}
.cc-close {
  display: block;
  position: absolute;
  top: .5em;
  right: .5em;
  font-size: 1.6em;
  opacity: .9;
  line-height: 0.75;
}
.cc-close:focus,
.cc-close:hover {
  opacity: 1;
}
.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: .5em;
  border-bottom-right-radius: 0.5em;
}
.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: .5em;
  border-top-right-radius: 0.5em;
}
.cc-revoke.cc-left {
  left: 3em;
  right: auto;
  right: initial;
}
.cc-revoke.cc-right {
  right: 3em;
  left: auto;
  left: initial;
}
.cc-top {
  top: 1em;
}
.cc-left {
  left: 1em;
}
.cc-right {
  right: 1em;
}
.cc-bottom {
  bottom: 1em;
}
.cc-floating > .cc-link {
  margin-bottom: 1em;
}
.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}
.cc-window.cc-floating .cc-compliance {
  flex: 1 0 auto;
}
.cc-window.cc-banner {
  align-items: center;
}
.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}
.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}
.cc-banner .cc-message {
  flex: 1 1;
}
.cc-compliance {
  display: flex;
  align-items: center;
  align-content: space-between;
}
.cc-compliance > .cc-btn {
  flex: 1 1;
}
.cc-btn + .cc-btn {
  margin-left: 0.5em;
}
@media print {
  .cc-revoke,
  .cc-window {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}
@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0;
  }
  .cc-window.cc-bottom {
    bottom: 0;
  }
  .cc-window.cc-banner,
  .cc-window.cc-left,
  .cc-window.cc-right {
    left: 0;
    right: 0;
  }
  .cc-window.cc-banner {
    flex-direction: column;
  }
  .cc-window.cc-banner .cc-compliance {
    flex: 1 1;
  }
  .cc-window.cc-floating {
    max-width: none;
  }
  .cc-window .cc-message {
    margin-bottom: 1em;
  }
  .cc-window.cc-banner {
    align-items: initial;
  }
}
.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}
.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  flex: none;
}
.cc-theme-classic .cc-btn {
  border-radius: 5px;
}
.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}
.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}
.cc-theme-edgeless.cc-window {
  padding: 0;
}
.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em 2em 1.5em;
}
.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: .8em 1.8em;
  height: 100%;
}
.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}
.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}
.cf:before,
.cf:after {
  content: " ";
  display: table;
}
.cf:after {
  clear: both;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  background-color: #fff;
  font:
    normal normal normal 100%/1.5 adelle-sans,
    "Trebuchet MS",
    "Lucida Grande",
    "Lucida Sans Unicode",
    "Lucida Sans",
    Tahoma,
    sans-serif;
  font-size: 16px;
  color: #00384f;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "liga", "dlig";
}
@media (min-width: 1024px) {
  p {
    font-size: 18px;
  }
}
.wf-loading h1,
.wf-loading h2,
.wf-loading h3,
.wf-loading h4,
.wf-loading h5,
.wf-loading h6,
.wf-loading #footer,
.wf-loading .main-navigation,
.wf-loading blockquote,
.wf-loading .tagline,
.wf-loading p {
}
.menuButton {
  display: none;
  text-decoration: none;
  z-index: 11;
  position: absolute;
  top: 30px;
  right: 5%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
}
h1 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 1em;
  line-height: 1.1;
  font-weight: bold;
}
@media (min-width: 768px) {
  h1 {
    font-size: 4em;
    font-size: 42px;
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 55px;
    font-size: 59px;
  }
}
.title {
  font-weight: 300;
}
.title-hero {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .title-hero {
    margin-bottom: 32px;
    margin-top: 16px;
  }
}
h2 {
  font-size: 27px;
  margin-bottom: .5em;
  font-weight: 300;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2em;
  }
}
h2.solo {
  margin-bottom: 27px;
  font-size: 22px;
}
@media (min-width: 768px) {
  h2.solo {
    font-size: 32px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1024px) {
  h2.solo {
    max-width: 75%;
    margin-bottom: 64px;
  }
}
h2.hero,
h4.hero {
  font-size: 1.667em;
  font-weight: 600;
}
h3 {
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 600;
}
@media (min-width: 768px) {
  h3 {
    font-size: 24px;
  }
}
h4 {
  margin-bottom: 18px;
  font-size: 20px;
}
h4.smallCaps {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 600;
}
h5 {
  margin-bottom: 18px;
  font-size: 16px;
}
a,
a:visited,
a:active {
  color: #00384f;
  text-decoration: underline;
}
a:hover {
  color: #de5353;
}
article a,
article a:active {
  font-style: normal;
  text-decoration: none;
  border-bottom: 1px solid #00384f;
}
article a:hover,
article a:active:hover {
  border-color: #de5353;
}
#logo,
.logo {
  z-index: 20;
  overflow: hidden;
  float: left;
  display: block;
  width: 105px;
  height: 29px;
}
#logo img,
.logo img {
  max-width: none;
  position: relative;
  width: 315px;
  height: 29px;
}
#logo:hover img,
.logo:hover img {
  left: -105px;
}
#header,
.content,
#footer {
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #header,
  .content,
  #footer {
    width: 95%;
  }
}
.content-project {
  max-width: 896px;
}
#header {
  margin-top: 54px;
  margin-bottom: 46px;
}
@media (min-width: 768px) {
  #header {
    margin-bottom: 54px;
  }
}
#header .logoWhite {
  display: none;
}
#content-wrapper.schreibmaschine {
  background: transparent url(/images/schreibmaschine.png) right bottom no-repeat;
  margin-bottom: 54px;
  background-size: 409px 512px;
}
@media (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  #content-wrapper.schreibmaschine {
    background-image: url(/images/schreibmaschine@2x.png);
  }
}
#footer {
  padding: 1em 0 60px;
}
#fadrat-at-work {
  margin: 0 auto;
  width: 1100px;
  height: auto;
  overflow: hidden;
  display: block;
  max-width: 100%;
  position: relative;
}
#fadrat-at-work img {
  max-width: 100%;
  height: auto;
}
#header .main-navigation li.active a {
  border-bottom: 2px solid #de5353;
}
.main-navigation {
  float: right;
  list-style: none;
  padding-top: 5px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
}
.main-navigation li {
  text-transform: uppercase;
  float: left;
  margin-left: 47px;
}
.main-navigation li a {
  color: #00384f;
  text-decoration: none;
}
.main-navigation li a:hover {
  color: #de5353;
}
.main-navigation li.last {
  margin-right: 0;
}
p {
  margin-bottom: 1em;
  width: 100%;
}
blockquote {
  margin: 36px 0;
}
blockquote {
  font-size: 20px;
  font-weight: 400;
}
blockquote em {
  font-size: 16px;
  font-weight: 400;
}
.tagline {
  font-size: 1.5625em;
  line-height: 1.4;
  margin-bottom: 72px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .tagline {
    line-height: 1.5;
  }
}
.tagline.introduction {
  line-height: 1.3;
}
.tagline.introduction a {
  font-weight: 600;
}
.tagline.flow {
  margin-bottom: 18px;
}
.introduction {
  font-size: 23px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .introduction {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .introduction {
    font-size: 32px;
  }
}
.container.border-bottom {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid #00384f;
}
.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12,
.grid_full {
  float: left;
  display: inline;
  margin-right: 24px;
  margin-bottom: 36px;
  width: 100%;
}
.last {
  margin-right: 0;
}
.grid_1 {
  max-width: 68px;
}
.grid_2 {
  max-width: 160px;
}
.grid_3 {
  max-width: 252px;
}
.grid_4 {
  max-width: 344px;
}
.center {
  margin: 0 auto;
  float: none;
  display: block;
}
.grid_5 {
  max-width: 436px;
  width: 48.6607143%;
  margin-right: 2.6785714%;
}
.grid_5.last {
  margin-right: 0;
}
.grid_6 {
  max-width: 528px;
}
.grid_7 {
  max-width: 620px;
}
.grid_8 {
  max-width: 712px;
}
.grid_10 {
  max-width: 896px;
}
.grid_full {
  max-width: auto;
}
.push_1 {
  margin-left: 10.2678571%;
}
.push_2 {
  margin-left: 184px;
}
.push_4 {
  margin-left: 368px;
}
.container {
  margin: 0;
  clear: both;
}
#footer a {
  font-weight: 600;
}
#footer .sub a:hover {
  color: #de5353;
}
#footer .sub.nav {
  border-top: 1px dotted #00384f;
  padding-top: 27px;
  margin-top: 54px;
  margin-bottom: 27px;
}
#footer .main-navigation {
  float: none;
  margin: 0;
  padding: 0;
}
#footer .main-navigation #home {
  display: block;
}
#footer .main-navigation li {
  margin-left: 0;
  margin-right: 5.46875%;
  margin-bottom: 0;
}
#footer .main-navigation .active a {
  border-bottom: 2px solid #de5353;
}
#footer .main-navigation .active em {
  display: none;
}
.sub {
  padding-top: 10px;
  border-top: 1px solid #00384f;
  font-size: 16px;
}
.sub em {
  padding: 0 10px;
  font-style: normal;
}
.clear {
  clear: both;
}
.subtext {
  font-style: italic;
  font-size: 18px;
}
.footnote {
  text-indent: -.7em;
}
.sharing {
  margin-top: 36px;
}
.sharing li {
  float: left;
  margin-right: 18px;
}
.sharing .facebook {
  position: relative;
  top: -5px;
}
.bulletlist {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 1em;
}
.Icon-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
}
.Icon-svg svg {
  fill: #00384f;
}
.Icon-svg:hover svg {
  fill: #de5353;
}
.Icon-link:hover svg {
  fill: #de5353;
}
.flex {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1400px;
  width: 92%;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .flex {
    width: 95%;
  }
}
@media (min-width: 768px) {
  .flex {
    gap: 32px;
  }
}
.flex .col {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .flex .img-maxwidth {
    width: 100%;
    max-width: 468px;
  }
}
.flex .col-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex .col-image img {
  max-width: 468px;
  width: 100%;
}
.flex.flex-top {
  align-items: flex-start;
}
.flex.flex-text {
  gap: 0;
}
.flex.flex-stretch {
  align-items: stretch;
}
@media (min-width: 768px) {
  .flex.flex-1-3 {
    gap: 0;
  }
  .flex.flex-1-3 .col:first-child {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(33.3333% - 10.6667px);
    margin-right: 16px;
  }
  .flex.flex-1-3 .col:last-child {
    flex-grow: 2;
    flex-shrink: 1;
    flex-basis: calc(66.6667% - 10.6667px);
  }
}
@media (min-width: 768px) {
  .flex.flex-3-1 {
    gap: 0;
  }
  .flex.flex-3-1 .col:first-child {
    flex-grow: 2;
    flex-shrink: 1;
    flex-basis: calc(66.6667% - 10.6667px);
  }
  .flex.flex-3-1 .col:last-child {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: calc(33.3333% - 10.6667px);
    margin-right: 16px;
  }
}
@media (min-width: 768px) {
  .flex.flex-solo-3-1 .col {
    width: calc(66.6667% - 10.6667px);
  }
}
.flex-reverse {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .flex-reverse {
    flex-direction: row;
  }
}
.flex-colored,
.content-colored {
  background-color: #f5fafd;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .flex-colored,
  .content-colored {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.flex-bordered,
.content-bordered {
  border-top: 1px solid #c8dce6;
  border-bottom: 1px solid #c8dce6;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .flex-bordered,
  .content-bordered {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.flex-padded,
.content-padded {
  margin-bottom: 32px;
}
@media (min-width: 480px) {
  .flex-padded,
  .content-padded {
    margin-bottom: 2em;
  }
}
@media (min-width: 768px) {
  .flex-padded,
  .content-padded {
    margin-bottom: 4em;
  }
}
@media (min-width: 1200px) {
  .flex-padded,
  .content-padded {
    margin-bottom: 5em;
  }
}
.flex-paddedHalf,
.content-paddedHalf {
  margin-bottom: .5em;
}
@media (min-width: 768px) {
  .flex-paddedHalf,
  .content-paddedHalf {
    margin-bottom: 2em;
  }
}
.flex-padded-md,
.content-padded-md {
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .flex-padded-md,
  .content-padded-md {
    margin-bottom: 2em;
  }
}
.flex-padded-sm,
.content-padded-sm {
  margin-bottom: .5em;
}
@media (min-width: 768px) {
  .flex-padded-sm,
  .content-padded-sm {
    margin-bottom: 1em;
  }
}
@media (min-width: 1200px) {
  .flex-padded-sm,
  .content-padded-sm {
    margin-bottom: 2em;
  }
}
.flex-content {
  width: 100%;
  flex-direction: column;
  gap: 32px;
}
.list {
  margin-bottom: 32px;
}
.list-lined {
  border-top: 1px solid #00384f;
}
.list-lined li {
  padding: 18px 0;
  border-bottom: 1px solid #00384f;
}
.list-bigger li {
  font-size: 19px;
}
.list-services {
  list-style-type: disc;
  padding-left: 1.2em;
}
.list-services h3 {
  font-size: 20px;
  margin-bottom: 3px;
}
strong {
  font-weight: 600;
}
@media (min-width: 768px) {
  .flex {
    flex-direction: row;
  }
  .flex .col {
    width: 50%;
  }
  .flex-content .col:first-child {
    width: 40%;
  }
  .flex-content .col:last-child {
    width: 60%;
  }
  .flex-delay {
    flex-direction: column;
  }
  .flex-delay.flex-reverse {
    flex-direction: column-reverse;
  }
  .flex-delay .col {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .flex-delay {
    flex-direction: row;
  }
  .flex-delay.flex-reverse {
    flex-direction: row;
  }
  .flex-delay .col {
    width: 50%;
  }
}
.flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
.flex-grid::after {
  content: "";
  flex: auto;
}
.flex-item {
  flex: 100% 1;
}
@media (min-width: 400px) {
  .flex-item {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: calc(100% / 2 - 16px);
  }
}
@media (min-width: 800px) {
  .flex-item {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: calc(100% / 3 - 16px);
  }
}
@media (min-width: 1200px) {
  .flex-item {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: calc(100% / 4 - 16px);
  }
}
@media (min-width: 1200px) {
  .projects-more .flex-item {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: calc(100% / 3 - 16px);
  }
}
.tag {
  background-color: #edf6fa;
  border-radius: 1.2em;
  padding: 0.5em 1.2em;
  display: inline-block;
  margin-bottom: 10.66667px;
  margin-right: 5.33333px;
}
.col-box {
  box-sizing: border-box;
  background-color: #edf6fa;
  border: 1px solid #00384f;
  border-radius: 1.2em;
  padding: 21.33333px;
}
@media (min-width: 768px) {
  .col-box {
    padding: 32px;
  }
}
.button {
  font-size: 18px;
  display: inline-block;
  position: relative;
  background-color: #fff;
  border-radius: 1.2em;
  padding: .5em 1.2em;
  text-decoration: none;
  font-weight: bold;
  margin: 1em 0 32px 10px;
}
.button::after {
  content: "";
  position: absolute;
  inset: -3px;
  background:
    linear-gradient(
      to right,
      #004dc2,
      #9200fb,
      #ff1f50);
  filter: blur(8px);
  z-index: -1;
  border-radius: 1.2em;
}
.button:hover {
  color: #fff;
  background:
    linear-gradient(
      to right,
      #9200fb,
      #ff1f50);
  text-decoration: none;
}
.cta {
  padding: 16px;
  margin-bottom: 32px;
  background: none;
  display: flex;
  flex-direction: column-reverse;
  align-items: left;
  gap: 16px;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .cta {
    gap: 32px;
    align-items: center;
    flex-direction: row;
    padding: 32px;
    margin-bottom: 64px;
  }
}
.cta .cta-image .cta-image-portrait {
  max-width: 100px;
}
.cta .cta-image .cta-image-landscape {
  max-width: 150px;
}
@media (min-width: 768px) {
  .cta .cta-image .cta-image-portrait {
    padding: 0 64px;
    max-width: 150px;
  }
  .cta .cta-image .cta-image-landscape {
    padding: 16px 0;
    max-width: 230px;
  }
}
.cta-gradient {
  border: 10px solid;
  border-image-slice: 1;
  border-width: 10px;
  border-image-source:
    linear-gradient(
      to right,
      #ffa621,
      #e46d6d,
      #7be4b7,
      #8b4be4);
}
.label {
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 16px;
}
.faq-h {
  margin-top: 21.33333px;
  margin-bottom: 8px;
}
.faq-h-first {
  margin-top: 0;
}
.servicesContainer {
  min-height: 830px;
  background: url(/images/dienste.png) top center no-repeat;
  background-size: 1100px 807px;
}
.servicesContainer .content {
  padding-top: 22em;
}
.portrait {
  width: 48.3146067%;
  margin-right: 3.3707865%;
  text-align: center;
}
.portrait.last {
  margin-right: 0;
}
.portrait img {
  width: 100%;
  max-width: 344px;
  border: 1px solid #00384f;
  margin-bottom: 18px;
}
.breakfastContainer {
  min-height: 610px;
  background: url(/images/kaffeeundkuchenklein.png) center top no-repeat;
  background-size: 1100px 610px;
}
@media (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .servicesContainer {
    background-image: url(/images/dienste@2x.png);
  }
  .breakfastContainer {
    background-image: url(/images/kaffeeundkuchenklein@2x.png);
  }
}
.services {
  margin: 1em 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
  gap: 16px;
}
@media (min-width: 768px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
    margin: 2em 0;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .services {
    grid-template-columns: repeat(4, 1fr);
  }
}
.services h3 {
  font-size: 19px;
  margin-bottom: 18px;
}
.services ul {
  line-height: 1.2em;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .services ul {
    margin-bottom: 48px;
  }
}
.services ul.last {
  margin-right: 0;
}
.services ul li {
  margin-bottom: 10px;
}
.info-grafik {
  margin-top: 36px;
}
.info-grafik img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.align-center {
  margin: 0 auto;
  display: block;
}
.contacts,
.impressum {
  padding-top: 100px;
  font-size: 22px;
  list-style: none;
  text-align: left;
  max-width: 282px;
  padding-bottom: 270px;
}
.contacts a,
.impressum a {
  text-decoration: underline;
}
.contacts li,
.impressum li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #00384f;
}
.contacts .social-media,
.impressum .social-media {
  display: inline;
  margin: 1em 1em 0 0;
  float: left;
  border-bottom: 0;
  text-indent: -9999px;
}
.contacts .social-media a,
.impressum .social-media a {
  width: 45px;
  height: 50px;
  display: block;
  background-image: url(/images/social-media.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.contacts .social-media a.facebook,
.impressum .social-media a.facebook {
  background-position: 0 -100px;
}
.contacts .social-media a.facebook:hover,
.impressum .social-media a.facebook:hover {
  background-position: 0 -150px;
}
.contacts .social-media a.twitter,
.impressum .social-media a.twitter {
  background-position: 0 0;
}
.contacts .social-media a.twitter:hover,
.impressum .social-media a.twitter:hover {
  background-position: 0 -50px;
}
.contacts .social-media a.insta,
.impressum .social-media a.insta {
  width: 35px;
  height: 35px;
  background: none;
  text-indent: 0;
}
.contacts .social-media a.insta svg,
.impressum .social-media a.insta svg {
  fill: #00384f;
}
.contacts .social-media a.insta:hover svg,
.impressum .social-media a.insta:hover svg {
  fill: #de5353;
}
@media (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .contacts,
  .impressum {
  }
  .contacts .social-media a,
  .impressum .social-media a {
    background-image: url(/images/social-media@2x.png);
  }
}
.contact-notop {
  padding-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .contacts {
    margin-top: -1em;
  }
}
@media screen and (min-width: 1024px) {
  .contacts {
    margin-top: -3em;
  }
}
@media screen and (min-width: 1200px) {
  .contacts {
    margin-top: -5em;
  }
}
@media screen and (min-width: 1400px) {
  .contacts {
    margin-top: -7em;
  }
}
.impressum {
  padding-bottom: 54px;
  padding-top: 1em;
  font-size: 16px;
}
.impressum h3 {
  margin-top: 1em;
  margin-bottom: .35em;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
.impressum li {
  padding-bottom: .5em;
  margin-bottom: .5em;
}
.background-image {
  position: absolute;
  right: 0;
  top: 250px;
  width: 500px;
  height: 600px;
  overflow: hidden;
  z-index: 0;
}
#schreibmaschine {
  position: absolute;
  right: -200px;
  width: 589px;
}
.projects li img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 4px;
}
.projects li img:hover {
  border-color: #de5353;
}
.projects li.item-3 {
  margin-right: 0px;
}
.projects li a {
  text-align: left;
  display: block;
  line-height: 1.2;
  text-decoration: none;
}
.projects li h5 {
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 5px;
}
@media (min-width: 400px) {
  .projects li h5 {
    font-size: 20px;
  }
}
@media (min-width: 800px) {
  .projects li h5 {
    font-size: 23px;
  }
}
.projects li .wf-loading a h5,
.projects li .wf-loading a p {
  visibility: hidden;
}
.projects li p {
  width: auto;
  display: block;
  text-align: left;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
}
.device {
  position: relative;
}
.device img {
  max-width: 100%;
  box-sizing: border-box;
}
.device.macbook {
  left: -7%;
  width: 1024px;
  max-width: 1024px;
  margin-right: 0;
}
.key-screenshot,
.hangover {
  position: relative;
  left: -7%;
  width: 1024px;
  max-width: 1024px;
  margin-right: 0;
  margin-bottom: 18px;
  float: none;
}
.full-size {
  width: 896px;
}
.project {
  clear: both;
}
.project .title {
  margin-bottom: 18px;
}
.project .heroimage {
  margin-top: 18px;
}
.project h2 {
  font-size: 28.430px;
  font-weight: 400;
  margin-bottom: 36px;
  margin-top: 0;
}
.project .tagline {
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .project .title-tagline {
    margin: 16px 0 46px 0;
  }
}
.project .main > p {
  font-family:
    adelle,
    Georgia,
    Times,
    Times New Roman,
    serif;
  margin-bottom: 36px;
  line-height: 1.6;
}
.project p + p {
  margin-top: -18px;
}
.project .main > p,
.project .main > blockquote {
  width: 620px;
}
.project .device.browser img {
  display: block;
}
.project .glow img {
  border: 1px solid #c8dce6;
  box-shadow: 0 2px 11px #c8dce6;
}
.project .border {
  display: block;
  border: 1px solid #00384f;
  box-shadow: 0 8px 0 -3px #eaf3f8;
}
@media (min-width: 768px) {
  .main {
    margin-top: 32px;
  }
}
.project-services {
  float: right;
  width: 252px;
  margin: 0 0 24px 0;
  border-top: 1px dotted #00384f;
  padding-top: 1em;
  font-size: 14px;
}
.project-services h4 {
  letter-spacing: 1px;
  font-size: 12px;
  margin-bottom: .25em;
  font-weight: 600;
  text-transform: uppercase;
}
.project-services p {
  margin-bottom: 1em;
  font-size: 16px;
}
.project-services a {
  text-decoration: none;
}
.project-services section {
  border-bottom: 1px dotted #00384f;
  margin-bottom: 1em;
}
.more-projects {
  border-top: 1px dotted #00384f;
  padding-top: 35px;
  margin-bottom: 36px;
  margin-top: 36px;
}
@media only screen and (min-width: 768px) {
  .projects li.item-1 {
    clear: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-navigation #home {
    display: none;
  }
  .main-navigation li {
    margin-left: 49px;
  }
  .project-services.push_1 {
    margin-left: 0;
  }
  div.info-grafik {
    max-width: 712px;
    display: block;
    float: none;
    margin: 0 auto;
    margin-bottom: 54px;
  }
  div.info-grafik img {
    display: block;
    margin: 0 auto;
    max-width: 436px;
  }
}
@media only screen and (max-width: 767px) {
  p,
  .project .main > p,
  .project .main > blockquote {
    width: 100%;
  }
  .tagline,
  .introduction {
    font-size: 22px;
    margin-bottom: 36px;
  }
  .grid_1,
  .grid_2,
  .grid_3,
  .grid_4,
  .grid_5,
  .grid_6,
  .grid_7,
  .grid_8,
  .grid_9,
  .grid10 {
    max-width: 100%;
  }
  .push_1.grid_8 {
    margin-left: 0;
  }
  .push_1.grid_4 {
    margin-left: 0;
  }
  .push_4.grid_6 {
    margin-left: 0;
  }
  #header {
    margin-top: 0;
    margin-bottom: 27px;
    width: 100%;
    height: 56px;
  }
  #header .logo {
    padding-top: 27px;
  }
  #header.menuOpen nav {
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    background-color: #00384f;
  }
  #header.menuOpen .logo img {
    left: -210px;
  }
  #header.menuOpen .menuButton {
    color: #fff;
  }
  #header.menuOpen ul.main-navigation {
    display: block;
  }
  #header .mobileMenu {
    display: block;
  }
  #header .logo {
    margin-left: 4%;
  }
  .project h2 {
    padding-bottom: 36px;
    font-size: 25px;
    margin-bottom: 0;
  }
  .info-grafik {
    margin: 18px 0 36px 0;
  }
  .container.border-bottom {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  #logo,
  .logo {
    float: none;
  }
  #content {
    margin: 18px auto;
  }
  .menuButton {
    display: block;
  }
  ul.contacts,
  ul.impressum {
    padding-top: 18px;
  }
  .project-services {
    padding: 24px;
    margin-bottom: 18px;
    background-color: #00384f;
    color: #fff;
  }
  .project-services a {
    color: #fff;
    border-color: #fff;
  }
  .project-services section {
    border-color: #fff;
  }
  .project-services section:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  #header ul.main-navigation {
    z-index: 10;
    width: 100%;
    float: none;
    display: none;
    padding: 30px 0 15px 0;
  }
  #header ul.main-navigation li {
    float: none;
    margin-left: 0;
    font-size: 22px;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  #header ul.main-navigation li a {
    color: #fff;
    font-weight: 400;
  }
  #header ul.main-navigation .active a {
    border-bottom: 3px solid #fff;
  }
  #header ul.main-navigation .active em {
    display: none;
  }
  #content-wrapper.schreibmaschine {
    background: none;
  }
  ul.contacts,
  ul.impressum {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .more-projects {
    border-top-width: 4px;
    border-top-style: solid;
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) {
  #header .logo {
    margin-left: 2.5;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  ul.main-navigation li {
    font-size: 16px;
    margin-right: 36px;
  }
}
@media only screen and (max-width: 500px) {
  .portrait {
    float: none;
    display: block;
    width: 100%;
  }
  .grid_5 {
    width: 100%;
    margin-right: 0;
  }
  #footer .main-navigation li {
    font-size: 26px;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
  #footer .main-navigation li a {
    font-weight: 600;
  }
}
@media only screen and (max-width: 896px) {
  .project-services {
    margin-left: 36px;
  }
}
@media only screen and (max-width: 600px) {
  .project-services {
    float: none;
    margin-left: 0;
    padding: 5% 6%;
    display: block;
    width: 88%;
  }
}
@media only screen and (max-width: 850px) {
}
@media only screen and (max-width: 1024px) {
  .key-screenshot,
  .hangover,
  .device.macbook {
    left: 0;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .col-noMob {
    display: none;
  }
}

/* frontend/styles/syntax-highlighting.css */
pre.highlight {
  padding: 16px;
  background-color: #F6F8FA;
}
.highlight .hll {
  background-color: #ffffcc;
}
.highlight .c {
  color: #999988;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  color: #000000;
  font-weight: bold;
}
.highlight .o {
  color: #000000;
  font-weight: bold;
}
.highlight .cm {
  color: #999988;
  font-style: italic;
}
.highlight .cp {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}
.highlight .c1 {
  color: #999988;
  font-style: italic;
}
.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000000;
  background-color: #ffdddd;
}
.highlight .ge {
  color: #000000;
  font-style: italic;
}
.highlight .gr {
  color: #aa0000;
}
.highlight .gh {
  color: #999999;
}
.highlight .gi {
  color: #000000;
  background-color: #ddffdd;
}
.highlight .go {
  color: #888888;
}
.highlight .gp {
  color: #555555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaaaaa;
}
.highlight .gt {
  color: #aa0000;
}
.highlight .kc {
  color: #000000;
  font-weight: bold;
}
.highlight .kd {
  color: #000000;
  font-weight: bold;
}
.highlight .kn {
  color: #000000;
  font-weight: bold;
}
.highlight .kp {
  color: #000000;
  font-weight: bold;
}
.highlight .kr {
  color: #000000;
  font-weight: bold;
}
.highlight .kt {
  color: #445588;
  font-weight: bold;
}
.highlight .m {
  color: #009999;
}
.highlight .s {
  color: #d01040;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #445588;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .nd {
  color: #3c5d5d;
  font-weight: bold;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #990000;
  font-weight: bold;
}
.highlight .nf {
  color: #990000;
  font-weight: bold;
}
.highlight .nl {
  color: #990000;
  font-weight: bold;
}
.highlight .nn {
  color: #555555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  color: #000000;
  font-weight: bold;
}
.highlight .w {
  color: #bbbbbb;
}
.highlight .mf {
  color: #009999;
}
.highlight .mh {
  color: #009999;
}
.highlight .mi {
  color: #009999;
}
.highlight .mo {
  color: #009999;
}
.highlight .sb {
  color: #d01040;
}
.highlight .sc {
  color: #d01040;
}
.highlight .sd {
  color: #d01040;
}
.highlight .s2 {
  color: #d01040;
}
.highlight .se {
  color: #d01040;
}
.highlight .sh {
  color: #d01040;
}
.highlight .si {
  color: #d01040;
}
.highlight .sx {
  color: #d01040;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d01040;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #009999;
}
/*# sourceMappingURL=/_bridgetown/static/index.LIVGEIFL.css.map */
