@font-face {
  font-family: Mattone;
  src: url(fonts/Mattone-Regular.woff2) format('woff2'), url(fonts/Mattone-Regular.woff) format('woff');
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
.icon svg {
  width: 0.75em;
  width: 1cap;
  height: 0.75em;
  height: 1cap;
}
.icon svg path,
.icon svg polygon,
.icon svg rect {
  fill: #000000;
}
.icon svg circle {
  stroke: #000000;
  stroke-width: 1;
}
.iconbutton {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  padding: 0;
  margin: 0;
  text-transform: lowercase;
}
.iconbutton .icon {
  margin-left: 20px;
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
/* A elements that do have a class should inherit the color style */
a[class] {
  color: inherit;
}
/* Make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
img {
  height: auto;
}
a[class] {
  color: inherit;
}
:focus {
  outline-offset: 0.3em;
}
html {
  font-size: 62.5%;
}
body {
  font-family: 'adelle', Georgia, Times, serif;
  font-weight: 300;
  font-size: 1.8em;
  line-height: 1.44;
  background: #f6f6f6;
  color: #4e4e4e;
}
@media only screen and (max-width: 599px) {
  body {
    font-size: 1.6em;
  }
}
::-moz-selection {
  color: #391c1f;
  background: #f8cfd3;
  text-decoration: none;
}
::selection {
  color: #391c1f;
  background: #f8cfd3;
  text-decoration: none;
}
a::-moz-selection {
  background: #093545;
  color: #ffffff;
}
a::selection {
  background: #093545;
  color: #ffffff;
}
h1,
h2,
h3,
h4 {
  font-family: Mattone, Helvetica, sans-serif;
  font-weight: normal;
  font-weight: 400;
}
:focus {
  outline-style: dashed;
  outline-color: #0086ab;
  outline-offset: 0.5em;
  outline-width: 2px;
}
.sr-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
@keyframes appear {
  0% {
    opacity: 0;
    display: none;
  }
  1% {
    display: block;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
@keyframes disappear {
  0% {
    opacity: 1;
    display: block;
  }
  99% {
    opacity: 0;
    display: block;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
.placeholder {
  box-sizing: border-box;
  background: var(--bg-color, rgba(0, 100, 200, 0.3));
  min-height: 5em;
  border: 2px dashed rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  padding: 10px;
  text-align: center;
}
.placeholder h3 {
  margin: auto;
  font-size: 1em;
  font-weight: normal;
}
.placeholder h3::before {
  content: "[ ";
}
.placeholder h3::after {
  content: " ]";
}
.linkbutton,
.menutrigger {
  font-family: Mattone, Helvetica, sans-serif;
  font-weight: normal;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  line-height: 1.2;
  max-width: 26ch;
  text-align: right;
}
.linkbutton .icon,
.menutrigger .icon {
  margin-left: 14px;
  flex-shrink: 0;
  flex-grow: 0;
}
.linkbutton .icon svg,
.menutrigger .icon svg {
  transform: translate(0, 0);
  transition: 0.2s ease-in-out;
  transition-property: transform;
}
.linkbutton.decal,
.menutrigger.decal {
  color: #ffffff;
  width: 11.875em;
  height: 11.875em;
  border-radius: 50%;
  padding: 2.625em 1.25em 1.875em;
  background: #0086ab;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
}
.linkbutton.decal .icon,
.menutrigger.decal .icon {
  margin-left: 0;
}
.linkbutton:hover .icon svg,
.linkbutton:focus .icon svg,
.menutrigger:hover .icon svg,
.menutrigger:focus .icon svg {
  transform: translate(8px, 0);
}
@media only screen and (max-width: 599px) {
  .linkbutton,
  .menutrigger {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 600px) {
  .linkbutton,
  .menutrigger {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .linkbutton.large,
  .menutrigger.large {
    font-size: 20px;
    font-size: 2rem;
  }
  .linkbutton.large .icon,
  .menutrigger.large .icon {
    margin-left: 30px;
  }
  .linkbutton.decal,
  .menutrigger.decal {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.text > * + * {
  margin-top: 1.2rem;
}
.text a:link {
  color: currentcolor;
  text-decoration: underline;
  text-decoration-color: #d9a0a6;
  text-underline-offset: 2px;
  text-decoration-thickness: 3px;
  box-shadow: 0 0 0 0 rgba(255, 210, 66, 0) inset;
  transition: all 0.2s linear;
}
.text a:link:hover {
  box-shadow: 0 -16px 0 0 #ffd242 inset;
  color: currentcolor;
  text-decoration-color: #ffd242;
}
.text a:visited {
  color: #9b9b9b;
}
.text a:visited:hover {
  text-decoration-color: #ffd242;
}
.text ul,
.text ol {
  padding-left: 0;
}
.text ul li,
.text ol li {
  list-style: none;
}
.text ul li::before,
.text ol li::before {
  margin-right: 1ch;
}
.text ul li::before {
  content: "–";
}
.text ol {
  counter-reset: ordered;
}
.text ol li {
  counter-increment: ordered;
}
.text ol li::before {
  content: counter(ordered);
}
.text h3,
.text h4 {
  color: #391c1f;
}
.text * + h3 {
  margin-top: 2em;
}
.text h4 {
  font-family: 'adelle', Georgia, Times, serif;
  font-weight: 400;
  font-size: 1em;
}
.text h4 + * {
  margin-top: 0;
}
.textblock {
  margin-right: auto;
  margin-left: auto;
  max-width: 780px;
}
.textblock h2 {
  color: #391c1f;
  text-align: center;
}
.textblock h2 + .text {
  margin-top: 2em;
}
@media only screen and (max-width: 599px) {
  .textblock h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 600px) {
  .textblock h2 {
    font-size: 44px;
    font-size: 4.4rem;
    line-height: 1.25;
    padding-right: 2em;
    padding-left: 2em;
  }
}
.card,
.quotecard {
  display: inline-flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
}
.card .text {
  margin: 10px 0 20px;
}
.card .text h3 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #093545;
}
.card .linkbutton,
.card .menutrigger {
  margin-top: auto;
  align-self: flex-end;
}
.card .unitag {
  transform: translate(-20px, -20px);
}
@media only screen and (min-width: 600px) {
  .card .text {
    margin: 20px 80px 20px 20px;
  }
  .card .text h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.imagecard {
  display: inline-flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.imagecard > * + * {
  margin-top: 1.2rem;
}
.imagecard > h3,
.imagecard > .text h3 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2;
}
.imagecard > .text {
  margin-right: auto;
  margin-left: auto;
}
.imagecard .unitag {
  grid-area: 1 / 1;
  position: absolute;
  left: 0;
  top: 0;
}
.imagecard .unitag + h3,
.imagecard .unitag + .text {
  margin-top: 30px;
}
@supports (display: grid) {
  .imagecard {
    position: relative;
    display: inline-grid;
    grid-template-rows: 40px 1fr 20px;
    grid-template-columns: 20px 1fr 20px;
    color: #f6f6f6;
  }
  .imagecard::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    background-color: rgba(9, 53, 69, 0.5);
  }
  .imagecard > * + * {
    margin-top: 0;
  }
  .imagecard > * {
    grid-area: 2 / 2;
    z-index: 3;
  }
  .imagecard > picture {
    grid-area: 1 / 1 / -1 / -1;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  .imagecard > picture img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .imagecard > h3,
  .imagecard > .text h3 {
    -webkit-hyphens: auto;
            hyphens: auto;
    word-wrap: anywhere;
    align-self: start;
    justify-self: center;
    color: #ffffff;
  }
  .imagecard > .text h3 {
    text-align: left;
    margin-right: 0;
    margin-left: 0;
  }
  .imagecard > .linkbutton,
  .imagecard > .menutrigger {
    align-self: end;
    justify-self: end;
  }
  .imagecard img,
  .imagecard::after {
    border-radius: 8px;
  }
  .imagecard::after {
    z-index: 2;
  }
}
.imagecard :focus {
  outline-color: #ffffff;
}
.imagecard.noimage {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  grid-template-rows: 40px auto 10px auto 20px;
}
.imagecard.noimage .linkbutton,
.imagecard.noimage .menutrigger {
  grid-row: 4;
}
.imagecard.noimage::after {
  display: none;
}
.quotecard {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.quotecard blockquote {
  font-size: 30px;
  font-size: 3rem;
  font-family: Mattone, Helvetica, sans-serif;
  font-weight: normal;
}
.quotecard .linkbutton,
.quotecard .menutrigger {
  align-self: flex-end;
}
blockquote p::before {
  content: open-quote;
}
blockquote p::after {
  content: close-quote;
}
.address .p-tel {
  margin-bottom: 1em;
}
.navigationlist ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.navigationlist :link,
.navigationlist :visited {
  text-decoration: none;
  color: inherit;
}
.topbar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  color: #391c1f;
  position: relative;
  z-index: 10;
}
.topbar .navs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.topbar .navs > * + * {
  margin-left: 50px;
}
@media only screen and (max-width: 599px) {
  .topbar {
    font-size: 12px;
    font-size: 1.2rem;
    align-items: center;
    padding: 25px 20px;
  }
  .topbar .logo {
    padding-left: 10px;
  }
  .topbar .logo svg,
  .topbar .logo img {
    width: 50px;
  }
}
@media only screen and (min-width: 600px) {
  .topbar {
    font-size: 20px;
    font-size: 2rem;
    align-items: flex-start;
    padding: 40px 50px;
  }
}
.icon {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.icon.circled {
  font-size: 36px;
  font-size: 3.6rem;
  width: 60px;
  height: 60px;
  padding: 16px;
  background-color: #0086ab;
  color: #ffffff;
  border-radius: 50%;
}
.icon.circled.mini {
  font-size: 20px;
  font-size: 2rem;
  width: 20px;
  height: 20px;
  padding: 0;
}
.icon.maroon {
  background: #391c1f;
  color: #58bbab;
}
.icon.cyan {
  background: #58bbab;
  color: #ffffff;
}
.icon.pink {
  background: #f8cfd3;
  color: #093545;
}
.icon.yellow {
  background: #ffd242;
  color: #093545;
}
.icon.white {
  background: #ffffff;
  color: #093545;
}
@media only screen and (max-width: 599px) {
  .icon.circled {
    font-size: 26px;
    font-size: 2.6rem;
    padding: 5px;
    width: 36px;
    height: 36px;
  }
  .icon.circled.mini {
    font-size: 16px;
    font-size: 1.6rem;
    width: 16px;
    height: 16px;
  }
}
.menutrigger {
  font-size: inherit;
}
.menutrigger .menulabel {
  text-transform: lowercase;
}
.menutrigger .icon svg path {
  transition: transform 0.2s ease-in-out;
}
.menutrigger:hover .icon.circled svg,
.menutrigger:focus .icon.circled svg {
  transform: translate(0, 0);
}
.menutrigger:hover .icon.circled svg path.mid-bar,
.menutrigger:focus .icon.circled svg path.mid-bar {
  transform: translateX(4px);
}
.menutrigger:hover .icon.circled svg path.bot-bar,
.menutrigger:focus .icon.circled svg path.bot-bar {
  transform: translateX(10px);
}
@media only screen and (max-width: 599px) {
  .menutrigger .icon.circled {
    width: 50px;
    height: 50px;
  }
}
.popup {
  display: inline-block;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 20px 30px;
  position: relative;
}
.popup > * + * {
  margin-top: 1.2rem;
}
.popup::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: inherit;
  transform: translate(-50%, -7px) rotate(45deg);
  position: absolute;
  left: 50%;
  top: 0;
}
.languagepicker {
  font-family: Mattone, Helvetica, sans-serif;
  font-weight: normal;
  color: #391c1f;
  text-transform: lowercase;
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 0;
}
.languagepicker::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 160%;
  display: block;
  left: 0;
  top: 0;
  z-index: -1;
  transform: translate(-14%, 0);
}
.languagepicker .iconbutton .icon {
  transition: transform 0.2s ease-in;
  margin-left: 0;
}
.languagepicker .iconbutton[aria-pressed] .icon {
  transform: rotate(180deg);
}
.languagepicker .iconbutton[aria-pressed="true"] .icon {
  transform: rotate(0);
}
.languagepicker .popup {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-2ch, 2em);
  text-align: center;
}
.languagepicker .popup :link {
  display: block;
  padding: 10px 6px;
}
.languagepicker .popup [aria-selected="true"] {
  color: rgba(57, 28, 31, 0.4);
  cursor: default;
}
.languagepicker .popup :link:not([aria-selected="true"]):hover {
  background-color: #eeeeee;
}
.languagepicker [aria-pressed="false"] + .popup {
  display: none;
  opacity: 0;
  transform: translate(-2ch, 1em);
}
.languagepicker [aria-pressed="true"] + .popup {
  opacity: 1;
  display: inline-block;
}
.mainnavigation {
  font-family: Mattone, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.8rem;
  color: #000000;
  background: #ffffff;
  padding: 120px 40px 40px;
}
.mainnavigation a {
  transition: transform 0.2s ease-in-out;
  display: inline-block;
}
.mainnavigation a:hover {
  transform: translateX(1.2rem);
}
.mainnavigation .closemenu {
  font-size: 16px;
  font-size: 1.6rem;
}
.mainnavigation > ul {
  margin-left: 0;
}
.mainnavigation > ul li {
  padding: 0.5em 1em 0.5em 10vw;
}
.mainnavigation > ul li.universe {
  margin-top: 1em;
  padding-left: 0;
  background: #eeeeee;
  color: #1f4344;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.mainnavigation > ul li.universe::before {
  content: "";
  display: block;
  width: 68px;
  height: 68px;
  background: url(icon-universe.svg) center no-repeat;
  margin: 0 calc((10vw - 68px) / 2);
}
@media only screen and (min-height: 40em) {
  .mainnavigation > ul {
    font-size: 20px;
    font-size: 2rem;
  }
  .mainnavigation > ul li {
    padding: 1.3em 1em 1.3em 10vw;
  }
  .mainnavigation > ul li.universe {
    padding: 2.4em 1em 2.4em 0;
  }
}
.mainnavigation .iconbutton {
  position: absolute;
  right: 50px;
  top: 40px;
}
.mainnavigation .iconbutton .icon {
  width: 50px;
  height: 50px;
}
.mainnavigation .iconbutton .icon svg {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 799px) {
  .mainnavigation {
    padding-right: 0;
    padding-left: 0;
  }
  .mainnavigation > ul li {
    padding: 1em 1em 1em 15vw;
  }
  .mainnavigation > ul li.universe::before {
    width: 38px;
    height: 38px;
    margin: 0 calc((15vw - 38px) / 2);
  }
}
@keyframes wobbleIn {
  10% {
    background-position-y: 20px;
  }
  40% {
    background-position-y: 30px;
  }
  90% {
    background-position-y: 18px;
  }
}
@keyframes wobbleOut {
  10% {
    background-position-y: 20px;
  }
  40% {
    background-position-y: 30px;
  }
  90% {
    background-position-y: 18px;
  }
}
.picture {
  background-color: rgba(31, 67, 68, 0.1);
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
}
.picture picture,
.picture img {
  width: 100%;
}
.picture.curtain {
  position: relative;
}
.picture.curtain::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  background-color: rgba(9, 53, 69, 0.5);
}
.presentation {
  display: flex;
  flex-wrap: wrap;
  border-radius: 8px;
  overflow: hidden;
}
.presentation > *:last-child {
  flex-basis: 58%;
  flex-grow: 1;
}
.presentation > *:first-child {
  flex-basis: 0;
  flex-grow: 999;
}
.presentation .content {
  background: #ffffff;
  padding: 40px 10% 40px 40px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}
.presentation .content > * + * {
  margin-top: 1.2rem;
}
.presentation .content h2 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25;
  color: #093545;
}
.presentation .content .text {
  min-width: 18ch;
}
.presentation .content .linkbutton,
.presentation .content .menutrigger {
  margin-top: 4rem;
  align-self: flex-end;
}
.presentation .media .picture {
  border-radius: 0;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .presentation .media .picture,
  .presentation .media .picture img {
    height: 100% !important;
    width: 100% !important;
  }
  .presentation .media .picture img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.pageheader,
.caseheader {
  padding: 0 1em;
}
.pageheader > * + *,
.caseheader > * + * {
  margin-top: 1.2rem;
}
.pageheader > *:empty,
.caseheader > *:empty {
  display: none;
}
.pageheader .overline,
.caseheader .overline {
  font-family: Mattone, Helvetica, sans-serif;
  font-weight: normal;
  color: #58bbab;
}
.pageheader h1,
.caseheader h1 {
  -webkit-hyphens: auto;
          hyphens: auto;
  word-wrap: anywhere;
  color: #391c1f;
}
.pageheader .teaser,
.caseheader .teaser {
  font-weight: 300;
  line-height: 1.5556;
}
.pageheader h1 + .teaser,
.caseheader h1 + .teaser {
  margin-top: 2em;
}
.pageheader.centered,
.caseheader.centered {
  text-align: center;
  width: auto;
}
@media only screen and (max-width: 599px) {
  .pageheader .overline,
  .caseheader .overline {
    -webkit-hyphens: auto;
            hyphens: auto;
    word-wrap: anywhere;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .pageheader h1,
  .caseheader h1 {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media only screen and (min-width: 600px) {
  .pageheader .overline,
  .caseheader .overline {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .pageheader h1,
  .caseheader h1 {
    font-size: 44px;
    font-size: 4.4rem;
    line-height: 1.25;
  }
}
.breaker,
.quotebreaker {
  position: relative;
  background: #391c1f;
  color: #f6f6f6;
  background: var(--breaker-bgcolor, #391c1f);
  color: var(--breaker-fcolor, #f6f6f6);
  padding: 4em 1em;
}
[data-layout] main > .breaker,
[data-layout] main > .quotebreaker {
  grid-column: full;
}
.breaker::before,
.quotebreaker::before {
  content: "";
  display: block;
  width: 300px;
  height: 360px;
  position: absolute;
  z-index: 0;
  background: url("snake-maroon.png") 0 0 no-repeat;
  background-size: 100%;
  left: 0;
  top: 50%;
}
@media only screen and (max-width: 599px) {
  .breaker::before,
  .quotebreaker::before {
    width: 150px;
    height: 180px;
  }
}
.breaker::after,
.quotebreaker::after {
  content: "";
  display: block;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  position: absolute;
  border: 2px solid #f8cfd3;
  top: 0;
  transform: translateY(-50%);
  right: 10%;
}
.breaker > *,
.quotebreaker > * {
  position: relative;
  z-index: 5;
}
.breaker h2,
.quotebreaker h2 {
  font-size: 1em;
  text-align: center;
}
.breaker h2 span,
.quotebreaker h2 span {
  display: block;
}
@media only screen and (max-width: 599px) {
  .breaker,
  .quotebreaker {
    font-size: 20px;
    font-size: 2rem;
  }
  .breaker::after,
  .quotebreaker::after {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (min-width: 600px) {
  .breaker,
  .quotebreaker {
    font-size: 44px;
    font-size: 4.4rem;
    line-height: 1.25;
  }
}
.card .employee {
  padding: 20px 10px;
}
.card .employee .picture {
  background: transparent;
}
.card .employee picture {
  transition: 0.2s cubic-bezier(0.15, -0.2, 0.25, 0.77);
  transition-property: border-radius;
  margin: 0 10px 70px;
  border-radius: 50%;
  overflow: hidden;
}
.card a:link .picture {
  position: relative;
}
.card a:link .picture::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: #ffd242 url(arrow-right.svg) center no-repeat;
  border-radius: 50%;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translate(-50%, 50%);
  transition: transform 0.3s cubic-bezier(0.15, -0.2, 0.25, 0.77);
}
.card a:link .picture:hover::after,
.card a:link .picture:focus::after {
  transform: translate(-50%, 46%) scale(1.1);
}
.card a:link .picture:hover picture,
.card a:link .picture:focus picture {
  border-radius: 46%;
}
.employee > * + * {
  margin-top: 1.2rem;
}
.employee * {
  text-decoration: none;
  color: inherit;
}
.employee h2 {
  font-size: 24px;
  font-size: 2.4rem;
}
.employee .title {
  font-family: Mattone, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 1em;
  margin-bottom: 1.4285em;
}
.employee .linkedin {
  display: block;
  margin-top: 1em;
}
.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
}
[data-layout] main > .gallery {
  grid-column: full;
}
.gallery .picture {
  border-radius: 0;
}
@supports (display: grid) {
  .debug .gallery {
    border-top: 5px solid;
  }
  @media only screen and (max-width: 599px) {
    .debug .gallery {
      border-color: tomato;
    }
  }
  @media only screen and (min-width: 600px) {
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    }
    .debug .gallery {
      border-color: orange;
    }
  }
  @media only screen and (min-width: 1401px) {
    .gallery {
      grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    }
    [data-layout="universe"] .gallery {
      grid-template-columns: repeat(auto-fit, minmax(580px, 1fr));
    }
    .debug .gallery {
      border-color: maroon;
    }
  }
}
.columnbreaker {
  position: relative;
  background: #ffffff;
  padding: 80px 0 100px;
}
[data-layout] main > .columnbreaker {
  grid-column: full;
}
.columnbreaker::before {
  content: "";
  display: block;
  width: 300px;
  height: 360px;
  position: absolute;
  z-index: 0;
  background: url("snake-green.png") 0 0 no-repeat;
  background-size: 100%;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 599px) {
  .columnbreaker::before {
    width: 150px;
    height: 180px;
  }
}
[data-layout="universe"] .columnbreaker::before {
  opacity: 0.3;
}
@media (max-width: 1340px) {
  .columnbreaker::before {
    right: 100%;
    left: auto;
    transform: translate(55%, -50px);
  }
}
.columnbreaker .inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 1180px;
  position: relative;
  z-index: 5;
}
.columnbreaker .inner > * + * {
  margin-top: 1.2rem;
}
.columnbreaker .inner > h2 {
  margin-right: auto;
  margin-left: auto;
  max-width: 75%;
  text-align: center;
}
.columnbreaker .columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.columnbreaker .columns > * {
  flex: 0 1 calc(30% - 20px);
  min-width: 30ch;
  margin: 20px;
}
.columnbreaker .columns.single-column > * {
  flex: 1 1 80%;
}
.columnbreaker .columns.dual-columns > * {
  flex: 1 1 45%;
}
.columnbreaker h2 + .columns {
  margin-top: 60px;
}
@supports (display: grid) {
  .columnbreaker .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .columnbreaker .columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20ch, 1fr));
    grid-gap: 5%;
  }
  .columnbreaker .columns > * {
    margin: 0;
    min-width: 0;
  }
}
.casecard {
  justify-content: space-between;
}
.caseheader h1 + .content {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
}
.caseheader h1 + .content > *:first-child {
  flex-basis: 0;
  flex-grow: 999;
  min-width: 65%;
  padding-right: 10%;
  padding-bottom: 2em;
}
.caseheader h1 + .content > *:last-child {
  flex-grow: 1;
}
.caseinfo dt {
  float: left;
  min-width: 10ch;
}
.caseinfo dt::after {
  content: ":";
}
.caseinfo dd {
  max-width: 22ch;
}
@supports (display: grid) {
  .caseinfo {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
  .caseinfo dt {
    float: none;
  }
}
.quotebreaker {
  font-family: Mattone, Helvetica, sans-serif;
  font-weight: normal;
}
.quotebreaker blockquote {
  text-align: center;
}
.quotebreaker blockquote cite {
  font-size: 16px;
  font-size: 1.6rem;
  font-style: normal;
  opacity: 0.5;
}
@media only screen and (min-width: 600px) {
  .quotebreaker blockquote cite {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.colorwrap {
  background: #193839;
  color: #f6f6f6;
  padding-top: 70px;
  padding-bottom: 100px;
}
[data-layout] main > .colorwrap {
  grid-column: full;
}
.colorwrap > * + * {
  margin-top: 4em;
}
.colorwrap.universe {
  position: relative;
  background: #1f4344;
  padding-top: 90px;
  padding-bottom: 170px;
}
.colorwrap.universe::before {
  content: "";
  display: block;
  width: 300px;
  height: 360px;
  position: absolute;
  z-index: 0;
  background: url("snake-green.png") 0 0 no-repeat;
  background-size: 100%;
  left: 0;
  top: 50%;
}
@media only screen and (max-width: 599px) {
  .colorwrap.universe::before {
    width: 150px;
    height: 180px;
  }
}
.colorwrap.universe > * {
  position: relative;
}
.colorwrap > * {
  margin-right: auto;
  margin-left: auto;
  max-width: 1180px;
}
.colorwrap > .pageheader,
.colorwrap > .caseheader {
  margin-top: 0 !important;
}
@supports (display: grid) {
  .colorwrap {
    display: grid;
    grid-template-columns: [full-start] minmax(20px, 1fr) [center-start] minmax(280px, 1180px) [center-end] minmax(20px, 1fr) [full-end];
  }
  .colorwrap > * {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    grid-column: center;
  }
}
.contentfilter {
  font-family: Mattone, Helvetica, sans-serif;
  font-weight: normal;
  color: #f8cfd3;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.contentfilter > * + * {
  margin-left: 10px;
}
.contentfilter a {
  position: relative;
  color: inherit;
  display: block;
  min-width: 8ch;
  text-align: center;
  text-decoration: none;
  padding-bottom: 12px;
}
.contentfilter a[aria-current="true"] {
  color: #ffffff;
}
.contentfilter a[aria-current="true"]::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: currentcolor;
}
.unitag {
  font-family: Mattone, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 15px;
  font-size: 1.5rem;
  display: inline-block;
  padding: 12px 20px;
  color: #1f4344;
  border-radius: 8px 0;
}
.unitag,
.unitag.pinkish {
  background: #f8cfd3;
  color: #093545;
}
.unitag.cyanish {
  background: #58bbab;
  color: #ffffff;
}
.unitag.maroonish {
  background: #391c1f;
  color: #58bbab;
}
.unitag.yellowish {
  background: #ffd242;
}
.unitag dt {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.closelink .linkbutton .icon svg,
.closelink .menutrigger .icon svg {
  transform: scale(-1) translate(0, 0);
}
.closelink .linkbutton:hover .icon svg,
.closelink .linkbutton:focus .icon svg,
.closelink .menutrigger:hover .icon svg,
.closelink .menutrigger:focus .icon svg {
  transform: scale(-1) translate(8px, 0);
}
.backlink {
  text-align: center;
}
.backlink .linkbutton,
.backlink .menutrigger {
  flex-direction: row-reverse;
}
.backlink .linkbutton .icon,
.backlink .menutrigger .icon {
  margin-left: 0;
  margin-right: 14px;
}
.backlink .linkbutton .icon svg,
.backlink .menutrigger .icon svg {
  transform: scale(-1) translate(0, 0);
}
.backlink .linkbutton:hover .icon svg,
.backlink .linkbutton:focus .icon svg,
.backlink .menutrigger:hover .icon svg,
.backlink .menutrigger:focus .icon svg {
  transform: scale(-1) translate(8px, 0);
}
.umbraco-forms-fieldset,
.mc_fieldset {
  border: none;
  padding: 0;
}
.umbraco-forms-navigation {
  margin-top: 60px;
}
.umbraco-forms-navigation > * {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.umbraco-forms-navigation > * button.linkbutton,
.umbraco-forms-navigation > * button.menutrigger {
  font-size: 20px;
  font-size: 2rem;
  border: none;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin-left: auto;
}
.mc-field-group,
.umbraco-forms-field {
  font-size: 16px;
  font-size: 1.6rem;
}
.mc-field-group + .umbraco-forms-field,
.umbraco-forms-field + .umbraco-forms-field {
  margin-top: 20px;
}
.mc-field-group + .mc-field-group,
.umbraco-forms-field + .mc-field-group {
  margin-top: 20px;
}
.mc-field-group ::-moz-placeholder, .umbraco-forms-field ::-moz-placeholder {
  color: #9b9b9b;
}
.mc-field-group ::placeholder,
.umbraco-forms-field ::placeholder {
  color: #9b9b9b;
}
.mc-field-group [type="email"],
.umbraco-forms-field [type="email"],
.mc-field-group [type="text"],
.umbraco-forms-field [type="text"],
.mc-field-group select,
.umbraco-forms-field select,
.mc-field-group textarea,
.umbraco-forms-field textarea {
  width: 100%;
  border-radius: 8px;
  background-color: #eeeeee;
  border: none;
  padding: 10px;
}
.mc-field-group [type="text"],
.umbraco-forms-field [type="text"] {
  height: 50px;
}
.mc-field-group.mc_fieldset [type="checkbox"],
.umbraco-forms-field.mc_fieldset [type="checkbox"],
.mc-field-group.checkbox .umbraco-forms-field-wrapper [type="checkbox"],
.umbraco-forms-field.checkbox .umbraco-forms-field-wrapper [type="checkbox"],
.mc-field-group.dataconsent .umbraco-forms-field-wrapper [type="checkbox"],
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper [type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.mc-field-group.mc_fieldset [type="checkbox"] ~ label,
.umbraco-forms-field.mc_fieldset [type="checkbox"] ~ label,
.mc-field-group.checkbox .umbraco-forms-field-wrapper [type="checkbox"] ~ label,
.umbraco-forms-field.checkbox .umbraco-forms-field-wrapper [type="checkbox"] ~ label,
.mc-field-group.dataconsent .umbraco-forms-field-wrapper [type="checkbox"] ~ label,
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper [type="checkbox"] ~ label {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.mc-field-group.mc_fieldset [type="checkbox"] ~ label::before,
.umbraco-forms-field.mc_fieldset [type="checkbox"] ~ label::before,
.mc-field-group.checkbox .umbraco-forms-field-wrapper [type="checkbox"] ~ label::before,
.umbraco-forms-field.checkbox .umbraco-forms-field-wrapper [type="checkbox"] ~ label::before,
.mc-field-group.dataconsent .umbraco-forms-field-wrapper [type="checkbox"] ~ label::before,
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper [type="checkbox"] ~ label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: #eeeeee;
  border-radius: 2px;
  margin-right: 15px;
}
.mc-field-group.mc_fieldset [type="checkbox"]:checked ~ label::before,
.umbraco-forms-field.mc_fieldset [type="checkbox"]:checked ~ label::before,
.mc-field-group.checkbox .umbraco-forms-field-wrapper [type="checkbox"]:checked ~ label::before,
.umbraco-forms-field.checkbox .umbraco-forms-field-wrapper [type="checkbox"]:checked ~ label::before,
.mc-field-group.dataconsent .umbraco-forms-field-wrapper [type="checkbox"]:checked ~ label::before,
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper [type="checkbox"]:checked ~ label::before {
  background: #456667 url(icon-checkmark.svg) center no-repeat;
}
.mc-field-group .radiobuttonlist > div + div,
.umbraco-forms-field .radiobuttonlist > div + div {
  margin-top: 13px;
}
.mc-field-group .radiobuttonlist [type="radio"],
.umbraco-forms-field .radiobuttonlist [type="radio"] {
  position: absolute;
  opacity: 0;
}
.mc-field-group .radiobuttonlist [type="radio"] ~ label,
.umbraco-forms-field .radiobuttonlist [type="radio"] ~ label {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.mc-field-group .radiobuttonlist [type="radio"] ~ label::before,
.umbraco-forms-field .radiobuttonlist [type="radio"] ~ label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: #eeeeee;
  border-radius: 50%;
  margin-right: 15px;
}
.mc-field-group .radiobuttonlist [type="radio"]:checked ~ label::before,
.umbraco-forms-field .radiobuttonlist [type="radio"]:checked ~ label::before {
  background: #fafafa;
  border: 5px solid #456667;
}
.mc-field-group textarea,
.umbraco-forms-field textarea {
  min-height: 5em;
}
.mc-field-group select,
.umbraco-forms-field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #9b9b9b;
  background-image: url(arrow-down.svg);
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: auto 8px;
}
.mc-field-group select option[value=""]:first-child ~ option,
.umbraco-forms-field select option[value=""]:first-child ~ option {
  color: #4e4e4e;
}
.mc-field-group .umbraco-forms-tooltip,
.umbraco-forms-field .umbraco-forms-tooltip {
  font-size: 14px;
  font-size: 1.4rem;
  font-style: italic;
}
.mc-field-group .umbraco-forms-tooltip:not(:empty)::before,
.umbraco-forms-field .umbraco-forms-tooltip:not(:empty)::before {
  content: '(';
}
.mc-field-group .umbraco-forms-tooltip:not(:empty)::after,
.umbraco-forms-field .umbraco-forms-tooltip:not(:empty)::after {
  content: ')';
}
.mc-field-group .input-validation-error,
.umbraco-forms-field .input-validation-error {
  background: rgba(153, 0, 0, 0.2);
  color: #900;
}
.mc-field-group .input-validation-error::-moz-placeholder, .umbraco-forms-field .input-validation-error::-moz-placeholder {
  color: rgba(153, 0, 0, 0.5);
}
.mc-field-group .input-validation-error::placeholder,
.umbraco-forms-field .input-validation-error::placeholder {
  color: rgba(153, 0, 0, 0.5);
}
.mc-field-group .field-validation-error,
.umbraco-forms-field .field-validation-error {
  padding-top: 6px;
  color: #900;
  display: block;
  text-align: right;
}
.mc-field-group :focus,
.umbraco-forms-field :focus {
  outline-style: none;
  box-shadow: 0 0 2px 2px rgba(0, 134, 171, 0.5);
}
.mc-field-group.checkbox:focus-within .umbraco-forms-field-wrapper,
.umbraco-forms-field.checkbox:focus-within .umbraco-forms-field-wrapper,
.mc-field-group.dataconsent:focus-within .umbraco-forms-field-wrapper,
.umbraco-forms-field.dataconsent:focus-within .umbraco-forms-field-wrapper,
.mc-field-group.singlechoice:focus-within .umbraco-forms-field-wrapper,
.umbraco-forms-field.singlechoice:focus-within .umbraco-forms-field-wrapper {
  outline-style: none;
  box-shadow: 0 0 2px 2px rgba(0, 134, 171, 0.5);
}
.mc-field-group label,
.umbraco-forms-field .umbraco-forms-label {
  display: inline-block;
  padding-bottom: 10px;
}
.mc_fieldset {
  padding: 10px;
  padding-left: 0;
}
.mc_fieldset:focus-within {
  outline-style: none;
  box-shadow: 0 0 2px 2px rgba(0, 134, 171, 0.5);
}
.content__gdprBlock > div + div {
  margin-top: 10px;
}
.content__gdprLegal {
  font-size: 12px;
  font-size: 1.2rem;
}
.download {
  position: relative;
  background: #eeeeee;
  color: #093545;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-right: 20px;
  margin-left: 20px;
}
@media only screen and (min-width: 1060px) {
  .download {
    margin-right: auto;
    margin-left: auto;
    max-width: 980px;
  }
}
.download > h3 {
  font-size: 20px;
  font-size: 2rem;
}
.download > h3::after {
  font-family: 'adelle', Georgia, Times, serif;
  font-weight: 300;
  content: attr(data-dl-size);
  font-size: 0.75em;
  margin-left: 1em;
  vertical-align: middle;
}
.download:not(.link-only) > h3 {
  flex-basis: 100%;
}
.download:not(.link-only) > h3 + * {
  margin-top: 20px;
}
.download > .text {
  flex-basis: 75%;
}
.download .linkbutton,
.download .menutrigger {
  position: static;
  margin-left: auto;
  justify-self: flex-end;
  transform: rotate(90deg);
}
.video {
  position: relative;
}
.video video {
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  display: block;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.video figcaption {
  margin-right: auto;
  margin-left: auto;
  max-width: 1180px;
}
.video video:not([controls]) ~ figcaption {
  font-size: 26px;
  font-size: 2.6rem;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
}
@media only screen and (max-width: 599px) {
  .video video:not([controls]) ~ figcaption {
    font-size: 18px;
    font-size: 1.8rem;
    padding-top: 120px;
  }
}
.video video:not([controls]) ~ button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border: none;
  background: url(icon-play-button.svg) center no-repeat;
  background-size: 100px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.video video:not([controls]) ~ button span {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
@media only screen and (max-width: 599px) {
  .video video:not([controls]) ~ button {
    background-size: 60px;
  }
}
.video.playing figcaption,
.video.playing button {
  opacity: 0;
}
.podcastcard > h3 {
  align-self: center;
  padding-bottom: 3em;
  max-width: 78%;
  text-align: left;
  justify-self: flex-start;
}
.relatedlink {
  text-align: right;
}
[data-layout] main > .relatedlink {
  margin-top: 85px;
}
[data-layout] main > .relatedlink + * {
  margin-top: 85px;
}
@media only screen and (max-width: 599px) {
  .relatedlink {
    text-align: center;
  }
  [data-layout] main > .relatedlink {
    margin-top: 56.66666667px;
  }
  [data-layout] main > .relatedlink + * {
    margin-top: 56.66666667px;
  }
}
.buybutton {
  background: #f8cfd3;
}
.buybutton.imagecard > .text {
  margin-left: 20px;
}
.buybutton.imagecard::after {
  background: rgba(57, 28, 31, 0.4);
}
.footer-panel {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857143;
  overflow: hidden;
  background: #ffffff;
  font-weight: 300;
  border-radius: 8px 8px 0 0;
}
.footer-panel > * {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: calc((60px / 2) * -1);
}
.footer-panel > * > * {
  margin: calc(60px / 2);
}
.footer-panel > * {
  align-items: flex-start;
}
.footer-panel .navigationlist ul {
  margin: 0;
}
.footer-panel .navigationlist :link,
.footer-panel .navigationlist :visited {
  transition: color 0.2s ease-in-out;
  display: block;
  padding: 5px;
}
.footer-panel .navigationlist :link:hover,
.footer-panel .navigationlist :visited:hover {
  color: #f8cfd3;
}
@media only screen and (max-width: 599px) {
  .footer-panel {
    padding: 50px 35px;
  }
  .footer-panel .address {
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 600px) {
  .footer-panel {
    padding: 50px 60px;
  }
  .footer-panel .address + .navigationlist {
    margin-left: auto;
  }
}
.page-footer {
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.page-footer::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  background-color: rgba(57, 28, 31, 0.5);
}
.page-footer .inner {
  position: relative;
  z-index: 5;
}
.page-footer .inner > * + * {
  margin-top: 60px;
}
.page-footer .info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
}
.page-footer .statement {
  font-family: Mattone, Helvetica, sans-serif;
  font-weight: normal;
  color: #ffffff;
  text-align: right;
}
@media only screen and (max-width: 599px) {
  .page-footer {
    padding: 10vh 0 0;
    background-size: auto 50%;
  }
  .page-footer .info {
    padding: 0 35px 30vh;
  }
  .page-footer .statement {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.83333333;
  }
}
@media only screen and (min-width: 600px) {
  .page-footer {
    background-size: cover;
    padding: 240px 50px 0;
  }
  .page-footer .inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1180px;
  }
  .page-footer .statement {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.27777778;
  }
}
.cards-panel > * {
  display: flex;
  flex-wrap: wrap;
  margin: calc((20px / 2) * -1);
}
.cards-panel > * > * {
  flex-grow: 1;
  flex-basis: calc((30ch - (100% - 20px)) * 999);
  margin: calc(20px / 2);
}
.cards-panel .inner > * {
  min-width: 300px;
}
.cards-panel.bricky .inner > *:nth-child(4n+1) {
  flex-grow: 4;
}
.cards-panel.bricky .inner > *:nth-child(7n+1) {
  flex-grow: 2;
}
.cards-panel + .cards-panel {
  margin-top: 20px;
}
.hero-panel {
  position: relative;
  padding: 30px 20px;
}
[data-layout] main > .hero-panel {
  grid-column: full;
}
.hero-panel::before {
  content: "";
  display: block;
  width: 300px;
  height: 360px;
  position: absolute;
  z-index: 0;
  background: url("snake-maroon.png") 0 0 no-repeat;
  background-size: 100%;
  right: 0;
  transform: scaleX(-1);
  top: 0;
  transform: translateY(-50px) scaleX(-1);
}
@media only screen and (max-width: 599px) {
  .hero-panel::before {
    width: 150px;
    height: 180px;
  }
}
.hero-panel::before {
  transform: translateY(200px) scaleX(-1);
  z-index: 4;
}
@media only screen and (max-width: 599px) {
  .hero-panel::before {
    transform: translateY(80px) scaleX(-1);
  }
}
.hero-panel .inner {
  display: flex;
  position: relative;
  background: #58bbab;
  padding: 20px;
}
.hero-panel .inner .picture {
  margin: 20px 0 0;
}
.hero-panel .inner::after {
  content: "";
  display: block;
  width: 132px;
  height: 132px;
  position: absolute;
  bottom: 0;
  left: 4%;
  border-radius: 50%;
  border: 3px solid #f8cfd3;
  transform: translateY(30%);
  clip-path: inset(0 0 30% 0);
}
.hero-panel header {
  color: #f6f6f6;
  margin-left: auto;
  margin-right: auto;
}
.hero-panel header h1 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.29166667;
  text-align: center;
  max-width: 18ch;
}
.hero-panel .links {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 70px;
}
.hero-panel .links > * + * {
  margin-top: 20px;
}
@media only screen and (max-width: 599px) {
  .hero-panel .inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .hero-panel .picture {
    width: 55%;
  }
  .hero-panel .picture + .picture {
    align-self: flex-end;
  }
  .hero-panel .links {
    margin-top: 60px;
    max-width: 20ch;
  }
}
@media only screen and (min-width: 600px) {
  .hero-panel {
    padding-top: 100px;
  }
  .hero-panel .inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1340px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .hero-panel .inner .picture {
    flex-basis: 48%;
  }
  .hero-panel .inner::after {
    width: 260px;
    height: 260px;
  }
  .hero-panel header h1 {
    font-size: 44px;
    font-size: 4.4rem;
  }
  .hero-panel .links {
    max-width: 26ch;
    margin-left: 20%;
  }
}
@supports (display: grid) {
  @media only screen and (max-width: 599px) {
    .hero-panel .inner {
      padding-top: 0;
      padding-bottom: 0;
      display: grid;
      grid-template-rows: 1fr 20px 1fr;
      grid-template-columns: 1fr 15px 1fr;
    }
    .hero-panel .inner header {
      grid-area: 1 / 1 / -1 / -1;
      align-self: center;
      justify-self: center;
      z-index: 10;
    }
    .hero-panel .inner .picture {
      width: auto;
      margin: 0;
      z-index: 5;
    }
    .hero-panel .inner header + .picture {
      grid-row: 1 / span 2;
      grid-column: 1;
      transform: translateY(-30px);
    }
    .hero-panel .inner .picture + .picture {
      grid-row: 2 / span 2;
      grid-column: 3;
      transform: translateY(30px);
    }
  }
  @media only screen and (min-width: 600px) {
    .hero-panel header h1 {
      font-size: 55px;
      font-size: 5.5rem;
    }
    .hero-panel .inner {
      padding: 5% 20px;
      display: grid;
      grid-template-rows: 1fr 1fr;
      grid-template-columns: 1fr minmax(auto, 580px) minmax(auto, 580px) 1fr;
      grid-gap: 0 20px;
    }
    .hero-panel .inner .picture {
      width: auto;
      margin: 0;
      z-index: 5;
    }
    .hero-panel .inner header {
      grid-row: 1;
      grid-column: 1 / -1;
      align-self: end;
      z-index: 10;
    }
    .hero-panel .inner .picture {
      grid-row: 1 / -1;
      grid-column: 2;
      transform: translateY(-30%);
    }
    .hero-panel .inner .picture + .picture {
      grid-column: 3;
      transform: translateY(30%);
    }
  }
}
.employees-panel {
  overflow: hidden;
}
[data-layout] main > .employees-panel {
  grid-column: full;
}
.employees-panel > * {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: calc((20px / 2) * -1);
}
.employees-panel > * > * {
  margin: calc(20px / 2);
}
.employees-panel .inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 1340px;
  box-sizing: content-box;
  padding-right: 20px;
  padding-left: 20px;
}
@supports (display: grid) {
  .employees-panel > .inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 20px;
    align-items: stretch;
    margin-top: 0;
    margin-bottom: 0;
  }
  .employees-panel > .inner > * {
    margin: 0;
  }
}
.frontpagegrid-panel .cards-header {
  padding: 0 30px 30px 40px;
}
.frontpagegrid-panel .cards-header h2 + div {
  margin-top: 1rem;
}
.frontpagegrid-panel .cards-header > div {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.frontpagegrid-panel .cards-header > div > *:last-child {
  flex-basis: 0;
  flex-grow: 999;
}
.frontpagegrid-panel .cards-header > div > *:first-child {
  flex-basis: 58%;
  flex-grow: 1;
}
.frontpagegrid-panel .cards-header .link {
  text-align: right;
}
.frontpagegrid-panel .cards-panel + .cards-panel {
  margin-top: 10px;
}
.universe .frontpagegrid-panel .card,
.colorwrap .frontpagegrid-panel .card {
  color: #4e4e4e;
}
.universe .frontpagegrid-panel .card .linkbutton .icon.circled,
.colorwrap .frontpagegrid-panel .card .linkbutton .icon.circled,
.universe .frontpagegrid-panel .card .menutrigger .icon.circled,
.colorwrap .frontpagegrid-panel .card .menutrigger .icon.circled {
  background: #0086ab;
  color: #ffffff;
}
.filter-panel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  align-content: flex-end;
}
.filter-panel.disabled {
  opacity: 0.4;
}
.filter-panel.disabled * {
  pointer-events: none;
}
.filter-panel h3 {
  color: #ffffff;
  opacity: 0.5;
  font-size: 1em;
  min-width: 8ch;
}
.filter-panel .contentfilter {
  margin-bottom: 1rem;
}
.filter-panel .contentfilter:last-child {
  margin-left: auto;
}
.form-panel > * {
  margin-right: auto;
  margin-left: auto;
  max-width: 75ch;
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
}
.video-panel {
  background: #391c1f;
  background-size: 100%;
  padding: 10% 7%;
}
[data-layout] main > .video-panel {
  grid-column: full;
}
.contact-panel .inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 1180px;
}
.contact-panel .inner h2 {
  font-size: 44px;
  font-size: 4.4rem;
  color: #391c1f;
  text-align: center;
  margin-bottom: 2em;
}
.contact-panel .inner > div > * {
  display: flex;
  flex-wrap: wrap;
  margin: calc((20px / 2) * -1);
}
.contact-panel .inner > div > * > * {
  flex-grow: 1;
  flex-basis: calc((70ch - (100% - 20px)) * 999);
  margin: calc(20px / 2);
}
.contact-panel .inner > div .umbraco-forms-form {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
}
.contact-panel .imagecard h3 {
  margin-top: 26px;
}
.contact-panel .imagecard::after {
  background-color: rgba(57, 28, 31, 0.4);
}
@media only screen and (max-width: 599px) {
  .contact-panel .inner h2 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
[data-layout] main {
  margin-right: auto;
  margin-left: auto;
  max-width: 1180px;
}
[data-layout] main > * + * {
  margin-top: 170px;
}
[data-layout] main:empty {
  min-height: 50vh;
}
[data-layout] main > *:last-child:not(.cling) {
  margin-bottom: 170px;
}
[data-layout] .mainnavigation {
  transition: 0.2s ease;
  transition-property: opacity, padding-top, padding-bottom, top;
  overflow-y: auto;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  top: -20px;
  width: 80vw;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  z-index: 15;
}
.menu-showing [data-layout] .mainnavigation,
[data-layout] .mainnavigation:target {
  max-height: 1000vh;
  padding-top: 120px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 800px) {
  [data-layout] .mainnavigation {
    width: 50vw;
    position: fixed;
  }
}
[data-layout] .pageheader,
[data-layout] .caseheader {
  margin-top: 100px;
  width: 60ch;
  max-width: 100%;
}
[data-layout] .caseheader {
  width: auto;
}
body::before {
  content: none;
  display: none;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
  animation: disappear 0.2s ease;
}
.menu-showing body::before {
  content: "";
  animation: appear 0.4s ease forwards;
  opacity: 1;
  display: block;
}
@supports (display: grid) {
  [data-layout] main {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    display: grid;
    grid-template-columns: [full-start] minmax(20px, 1fr) [center-start] minmax(280px, 1180px) [center-end] minmax(20px, 1fr) [full-end];
  }
  [data-layout] main > * {
    grid-column: center;
  }
  [data-layout] main > .fullwidth {
    grid-column: full;
  }
}
[data-layout^="employee"] .pageheader,
[data-layout^="employee"] .caseheader {
  width: auto;
}
[data-layout="employee"] .pageheader .teaser,
[data-layout="employee"] .caseheader .teaser {
  max-width: 70ch;
}
[data-layout="employees"] .pageheader,
[data-layout="employees"] .caseheader {
  margin-right: auto;
  margin-left: auto;
  max-width: 780px;
  box-sizing: content-box;
  padding-right: 20px;
  padding-left: 20px;
}
[data-layout="employees"] .pageheader h1,
[data-layout="employees"] .caseheader h1 {
  text-align: center;
}
[data-layout="universe"] {
  background: #1f4344;
}
[data-layout="universe"] .topbar {
  background: #f6f6f6;
}
[data-layout="universe"] main {
  color: #f6f6f6;
}
[data-layout="universe"] main .colorwrap > .pageheader h1,
[data-layout="universe"] main .colorwrap > .caseheader h1 {
  color: #f6f6f6;
}
[data-layout="universe"] main .colorwrap > .cards-panel [class*="card"] {
  background: #f8cfd3;
  color: #391c1f;
}
[data-layout="universe"] main .colorwrap > .cards-panel [class*="card"].noimage h3 {
  color: inherit;
}
[data-layout="universe"] main .colorwrap > .cards-panel [class*="card"] .linkbutton .icon,
[data-layout="universe"] main .colorwrap > .cards-panel [class*="card"] .menutrigger .icon {
  background: #0086ab;
  color: #eeeeee;
}
[data-layout="universe"] main > .filter-panel {
  margin-top: 0;
  padding-top: 80px;
  margin-bottom: 50px;
}
[data-layout="universe"] main > .content {
  margin-right: auto;
  margin-left: auto;
  max-width: 1180px;
  width: 100%;
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  color: #4e4e4e;
  margin-top: 0;
}
[data-layout="universe"] main > .content > * + * {
  margin-top: 120px;
}
[data-layout="universe"] main > .content:first-child {
  margin-top: 100px;
}
[data-layout="universe"] main > .content .closelink {
  position: absolute;
  top: 16px;
  right: 18px;
  margin-top: 0;
}
[data-layout="universe"] main > .content .closelink ~ * .icon.circled {
  color: #ffffff;
  background: #0086ab;
}
[data-layout="universe"] main > .content .pageheader,
[data-layout="universe"] main > .content .caseheader {
  margin-top: 120px;
}
[data-layout="universe"] main > .content .pageheader:last-child,
[data-layout="universe"] main > .content .caseheader:last-child {
  padding-bottom: 100px;
}
@media only screen and (min-width: 600px) {
  [data-layout="universe"] main > .content .pageheader,
  [data-layout="universe"] main > .content .caseheader {
    padding-left: 90px;
  }
}
[data-layout="universe"] main > .content .presentation .content {
  padding-left: 7%;
  padding-right: 7%;
}
[data-layout="universe"] main > .content .textblock {
  margin-right: auto;
  margin-left: auto;
  max-width: 980px;
  box-sizing: content-box;
  padding-right: 20px;
  padding-left: 20px;
}
[data-layout="universe"] main > .result {
  margin-top: 0;
  color: #4e4e4e;
}
[data-layout="universe"] main > .result .cards-panel + .cards-panel {
  margin-top: 10px;
}
[data-layout="universe"] main > .result .cards-panel + .cards-panel .card .text {
  margin: 0;
}
[data-layout="universe"] main > .result .cards-panel + .cards-panel .card .text h3 {
  color: unset;
}
[data-layout="universe"] main > .result .inner + .inner {
  margin-top: 10px;
}
[data-layout="universe"] main .relatedlink {
  padding-right: 20px;
}
.debug body::after {
  display: block;
  width: 100%;
  height: 10px;
  position: fixed;
  z-index: 50;
  top: 0;
  font-size: 11px;
  font-family: monospace;
  font-weight: bold;
  text-transform: uppercase;
}
@media only screen and (max-width: 599px) {
  .debug body::after {
    content: "compact";
    background-color: rgba(255, 128, 0, 0.5);
  }
}
@media only screen and (min-width: 600px) {
  .debug body::after {
    content: "regular";
    background-color: rgba(255, 0, 255, 0.5);
  }
}
.debug body .spacer {
  background: rgba(200, 180, 0, 0.3);
  outline: 4px dashed rgba(0, 0, 0, 0.3);
}
.debug .components {
  max-width: none;
}
