/**! ==================================================
 * helllicht Toolkit
 *
 * ================================================== */
/**! ==================================================
 * VENDORS
 * external sources like normalize or css reset
 *  - css normalize/reset
 *  - externals
 * ================================================== */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*
 * Settings
 ==============================: */
/**! ==================================================
 * GLOBAL
 * Global Styling
 * ================================================== */
/**! ==================================================
 * GLOBAL/Animations
 * Fancy CSS Animations & Microinteractions
 * ================================================== */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}
@-webkit-keyframes scroller-bounce {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes scroller-bounce {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
/**! ==================================================
 * GLOBAL/Body
 * Body Styling
 * ================================================== */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  overflow-y: scroll;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-size: 100%;
  font-family: 'HCo Gotham', Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: tabular-nums;
}
.pagewrap {
  margin: 0 auto;
}
@media only screen and (max-width:64em) {
  .pagewrap {
    padding-top: 68px;
  }
}
/**! ==================================================
 * COMPONENTS/Button
 * Button Styling
 * ================================================== */
.btn {
  display: inline-block;
  margin-bottom: 1rem;
  margin-right: 1rem;
  padding: 1.25rem 2rem;
  cursor: pointer;
  vertical-align: middle;
  border: none;
  border-radius: 2em;
  background: #FFE900;
  color: #00414B;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 28px;
  font-weight: 500;
  font-family: 'HCo Gotham', Helvetica, Arial, sans-serif;
  text-align: center;
  letter-spacing: 0.1px;
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  outline: none;
}
.btn:last-child {
  margin-bottom: 0;
}
.btn:hover,
.btn:focus {
  background: #ffd619;
  color: #00414B;
}
@media only screen and (max-width:64em) {
  .btn {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 24px;
    padding: 1rem 2rem;
  }
}
@media only screen and (max-width:30em) {
  .btn {
    width: 100%;
    margin-right: 0;
  }
}
.btn--secondary {
  background: none;
  border: 1px solid currentColor;
  -webkit-box-shadow: inset 0 0 0 0 currentColor;
          box-shadow: inset 0 0 0 0 currentColor;
  color: #00414B;
}
.btn--secondary:hover,
.btn--secondary:focus {
  background: none;
  -webkit-box-shadow: inset 0 0 0 1px currentColor;
          box-shadow: inset 0 0 0 1px currentColor;
}
.btn--secondary .theme-dark {
  color: #DCE6E6;
}
.btn--small {
  padding: 0.75em 1em;
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-size: 0.875rem;
}
.btn--large {
  padding: 1.25em 2.25em;
  font-size: 16px;
  font-size: 1rem;
}
.icon-btn {
  border: none;
  background: none;
  padding: 4px;
  outline: none;
}
.icon-btn svg {
  vertical-align: middle;
}
/**! ==================================================
 * GLOBAL/Colors
 *  color classes
 * ================================================== */
::-moz-selection {
  color: #00414B;
  background: #FFE900;
}
::selection {
  color: #00414B;
  background: #FFE900;
}
/**! ==================================================
 * GLOBAL/Fonts
 *  font-face
 * ================================================== */
@font-face {
  font-family: "HCo Gotham";
  src: url("../fonts/Gotham-Book_Web.woff2") format("woff2"), url("../fonts/Gotham-Book_Web.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "HCo Gotham";
  src: url("../fonts/Gotham-Medium_Web.woff2") format("woff2"), url("../fonts/Gotham-Medium_Web.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "HCo Gotham";
  src: url("../fonts/Gotham-Bold_Web.woff2") format("woff2"), url("../fonts/Gotham-Bold_Web.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/**! ==================================================
 * COMPONENTS/Grid
 * Flex Grid
 * ================================================== */
.flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}
.flex-grid .inner {
  height: 100%;
}
.flex-grid.grid-pad {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.flex-grid.grid-pad .flex-grid__col {
  padding: 1rem;
}
.flex-grid.grid-pad--narrow {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}
.flex-grid.grid-pad--narrow .flex-grid__col {
  padding: 0.25rem;
}
.order1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (max-width:30em) {
  .order1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.order2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (max-width:30em) {
  .order2 {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}
.order3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media only screen and (max-width:30em) {
  .order3 {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}
@media only screen and (max-width:20em) {
  .flex-basis1,
  .flex-basis2,
  .flex-basis3,
  .flex-basis4,
  .flex-basis5,
  .flex-basis6,
  .flex-basis7,
  .flex-basis8,
  .flex-basis9,
  .flex-basis10,
  .flex-basis11,
  .flex-basis12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.center-main {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.center-cross {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rowreverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.columnreverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.flexend {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.space-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.valign-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.valign-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.valign-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.valign-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.flex__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.flex__item--align-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.c-1 {
  width: 8.333336%;
}
.c-2 {
  width: 16.666667%;
}
.c-3 {
  width: 25.000008%;
}
.c-4 {
  width: 33.333344%;
}
.c-5 {
  width: 41.66668%;
}
.c-6 {
  width: 50.000016%;
}
.c-7 {
  width: 58.333352%;
}
.c-8 {
  width: 66.666667%;
}
.c-9 {
  width: 75.000024%;
}
.c-10 {
  width: 83.33336%;
}
.c-11 {
  width: 91.666696%;
}
.c-12 {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .flex__item--hide-wide {
    display: none!important;
  }
}
@media only screen and (max-width:48em) {
  .c-1,
  .c-2,
  .c-3,
  .c-4,
  .c-5,
  .c-6,
  .c-7,
  .c-8,
  .c-9,
  .c-10,
  .c-11,
  .c-12 {
    width: 100%;
  }
  .c-1.flex__item--medium-half,
  .c-2.flex__item--medium-half,
  .c-3.flex__item--medium-half,
  .c-4.flex__item--medium-half,
  .c-5.flex__item--medium-half,
  .c-6.flex__item--medium-half,
  .c-7.flex__item--medium-half,
  .c-8.flex__item--medium-half,
  .c-9.flex__item--medium-half,
  .c-10.flex__item--medium-half,
  .c-11.flex__item--medium-half,
  .c-12.flex__item--medium-half {
    width: 50%;
  }
  .c-1.flex__item--medium-third,
  .c-2.flex__item--medium-third,
  .c-3.flex__item--medium-third,
  .c-4.flex__item--medium-third,
  .c-5.flex__item--medium-third,
  .c-6.flex__item--medium-third,
  .c-7.flex__item--medium-third,
  .c-8.flex__item--medium-third,
  .c-9.flex__item--medium-third,
  .c-10.flex__item--medium-third,
  .c-11.flex__item--medium-third,
  .c-12.flex__item--medium-third {
    width: 33.333344%;
  }
  .c-1.flex__item--medium-quarter,
  .c-2.flex__item--medium-quarter,
  .c-3.flex__item--medium-quarter,
  .c-4.flex__item--medium-quarter,
  .c-5.flex__item--medium-quarter,
  .c-6.flex__item--medium-quarter,
  .c-7.flex__item--medium-quarter,
  .c-8.flex__item--medium-quarter,
  .c-9.flex__item--medium-quarter,
  .c-10.flex__item--medium-quarter,
  .c-11.flex__item--medium-quarter,
  .c-12.flex__item--medium-quarter {
    width: 25%;
  }
}
@media only screen and (min-width: 601px) and (max-width: 768px) {
  .flex__item--hide-medium {
    display: none!important;
  }
}
@media only screen and (max-width:30em) {
  .c-1.flex__item--medium-half,
  .c-2.flex__item--medium-half,
  .c-3.flex__item--medium-half,
  .c-4.flex__item--medium-half,
  .c-5.flex__item--medium-half,
  .c-6.flex__item--medium-half,
  .c-7.flex__item--medium-half,
  .c-8.flex__item--medium-half,
  .c-9.flex__item--medium-half,
  .c-10.flex__item--medium-half,
  .c-11.flex__item--medium-half,
  .c-12.flex__item--medium-half {
    width: 100%;
  }
  .c-1.flex__item--medium-third,
  .c-2.flex__item--medium-third,
  .c-3.flex__item--medium-third,
  .c-4.flex__item--medium-third,
  .c-5.flex__item--medium-third,
  .c-6.flex__item--medium-third,
  .c-7.flex__item--medium-third,
  .c-8.flex__item--medium-third,
  .c-9.flex__item--medium-third,
  .c-10.flex__item--medium-third,
  .c-11.flex__item--medium-third,
  .c-12.flex__item--medium-third {
    width: 100%;
  }
  .c-1.flex__item--medium-quarter,
  .c-2.flex__item--medium-quarter,
  .c-3.flex__item--medium-quarter,
  .c-4.flex__item--medium-quarter,
  .c-5.flex__item--medium-quarter,
  .c-6.flex__item--medium-quarter,
  .c-7.flex__item--medium-quarter,
  .c-8.flex__item--medium-quarter,
  .c-9.flex__item--medium-quarter,
  .c-10.flex__item--medium-quarter,
  .c-11.flex__item--medium-quarter,
  .c-12.flex__item--medium-quarter {
    width: 100%;
  }
  .c-1.flex__item--narrow-half,
  .c-2.flex__item--narrow-half,
  .c-3.flex__item--narrow-half,
  .c-4.flex__item--narrow-half,
  .c-5.flex__item--narrow-half,
  .c-6.flex__item--narrow-half,
  .c-7.flex__item--narrow-half,
  .c-8.flex__item--narrow-half,
  .c-9.flex__item--narrow-half,
  .c-10.flex__item--narrow-half,
  .c-11.flex__item--narrow-half,
  .c-12.flex__item--narrow-half {
    width: 50%;
  }
  .c-1.flex__item--narrow-third,
  .c-2.flex__item--narrow-third,
  .c-3.flex__item--narrow-third,
  .c-4.flex__item--narrow-third,
  .c-5.flex__item--narrow-third,
  .c-6.flex__item--narrow-third,
  .c-7.flex__item--narrow-third,
  .c-8.flex__item--narrow-third,
  .c-9.flex__item--narrow-third,
  .c-10.flex__item--narrow-third,
  .c-11.flex__item--narrow-third,
  .c-12.flex__item--narrow-third {
    width: 33.333344%;
  }
  .c-1.flex__item--narrow-quarter,
  .c-2.flex__item--narrow-quarter,
  .c-3.flex__item--narrow-quarter,
  .c-4.flex__item--narrow-quarter,
  .c-5.flex__item--narrow-quarter,
  .c-6.flex__item--narrow-quarter,
  .c-7.flex__item--narrow-quarter,
  .c-8.flex__item--narrow-quarter,
  .c-9.flex__item--narrow-quarter,
  .c-10.flex__item--narrow-quarter,
  .c-11.flex__item--narrow-quarter,
  .c-12.flex__item--narrow-quarter {
    width: 25%;
  }
  .c-1.flex__item--hide-narrow,
  .c-2.flex__item--hide-narrow,
  .c-3.flex__item--hide-narrow,
  .c-4.flex__item--hide-narrow,
  .c-5.flex__item--hide-narrow,
  .c-6.flex__item--hide-narrow,
  .c-7.flex__item--hide-narrow,
  .c-8.flex__item--hide-narrow,
  .c-9.flex__item--hide-narrow,
  .c-10.flex__item--hide-narrow,
  .c-11.flex__item--hide-narrow,
  .c-12.flex__item--hide-narrow {
    display: none!important;
  }
}
@media only screen and (max-width:20em) {
  .c-1.flex__item--narrow-half,
  .c-2.flex__item--narrow-half,
  .c-3.flex__item--narrow-half,
  .c-4.flex__item--narrow-half,
  .c-5.flex__item--narrow-half,
  .c-6.flex__item--narrow-half,
  .c-7.flex__item--narrow-half,
  .c-8.flex__item--narrow-half,
  .c-9.flex__item--narrow-half,
  .c-10.flex__item--narrow-half,
  .c-11.flex__item--narrow-half,
  .c-12.flex__item--narrow-half {
    width: 100%;
  }
  .c-1.flex__item--narrow-third,
  .c-2.flex__item--narrow-third,
  .c-3.flex__item--narrow-third,
  .c-4.flex__item--narrow-third,
  .c-5.flex__item--narrow-third,
  .c-6.flex__item--narrow-third,
  .c-7.flex__item--narrow-third,
  .c-8.flex__item--narrow-third,
  .c-9.flex__item--narrow-third,
  .c-10.flex__item--narrow-third,
  .c-11.flex__item--narrow-third,
  .c-12.flex__item--narrow-third {
    width: 100%;
  }
  .c-1.flex__item--narrow-quarter,
  .c-2.flex__item--narrow-quarter,
  .c-3.flex__item--narrow-quarter,
  .c-4.flex__item--narrow-quarter,
  .c-5.flex__item--narrow-quarter,
  .c-6.flex__item--narrow-quarter,
  .c-7.flex__item--narrow-quarter,
  .c-8.flex__item--narrow-quarter,
  .c-9.flex__item--narrow-quarter,
  .c-10.flex__item--narrow-quarter,
  .c-11.flex__item--narrow-quarter,
  .c-12.flex__item--narrow-quarter {
    width: 100%;
  }
  .c-1.flex__item--hide-mobile,
  .c-2.flex__item--hide-mobile,
  .c-3.flex__item--hide-mobile,
  .c-4.flex__item--hide-mobile,
  .c-5.flex__item--hide-mobile,
  .c-6.flex__item--hide-mobile,
  .c-7.flex__item--hide-mobile,
  .c-8.flex__item--hide-mobile,
  .c-9.flex__item--hide-mobile,
  .c-10.flex__item--hide-mobile,
  .c-11.flex__item--hide-mobile,
  .c-12.flex__item--hide-mobile {
    display: none!important;
  }
}
/**! ==================================================
 * COMPONENTS/Grid
 *
 * ================================================== */
.grid {
  width: 100%;
  max-width: 90em;
  margin: 0 auto;
  padding: 0 1rem;
}
.grid:after {
  content: "";
  clear: both;
  display: table;
}
.grid--endless .grid__col:last-child {
  float: left;
}
.grid .grid {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.grid__col {
  float: left;
  min-height: 1px;
}
.grid__col.col__switch-right:first-child {
  float: right!important;
}
.grid__col.col__switch-right:last-child {
  float: left!important;
}
.grid__col:last-child {
  float: right;
}
.grid__col:first-child {
  float: left;
}
.c-1 {
  width: 8.333336%;
}
.c-2 {
  width: 16.666667%;
}
.c-3 {
  width: 25.000008%;
}
.c-4 {
  width: 33.333344%;
}
.c-5 {
  width: 41.66668%;
}
.c-6 {
  width: 50.000016%;
}
.c-7 {
  width: 58.333352%;
}
.c-8 {
  width: 66.666667%;
}
.c-9 {
  width: 75.000024%;
}
.c-10 {
  width: 83.33336%;
}
.c-11 {
  width: 91.666696%;
}
.c-12 {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .grid__col--hide-wide {
    display: none!important;
  }
}
@media only screen and (max-width:48em) {
  .c-1,
  .c-2,
  .c-3,
  .c-4,
  .c-5,
  .c-6,
  .c-7,
  .c-8,
  .c-9,
  .c-10,
  .c-11,
  .c-12 {
    width: 100%;
  }
  .c-1.grid__col--medium-half,
  .c-2.grid__col--medium-half,
  .c-3.grid__col--medium-half,
  .c-4.grid__col--medium-half,
  .c-5.grid__col--medium-half,
  .c-6.grid__col--medium-half,
  .c-7.grid__col--medium-half,
  .c-8.grid__col--medium-half,
  .c-9.grid__col--medium-half,
  .c-10.grid__col--medium-half,
  .c-11.grid__col--medium-half,
  .c-12.grid__col--medium-half {
    width: 50%;
  }
  .c-1.grid__col--medium-third,
  .c-2.grid__col--medium-third,
  .c-3.grid__col--medium-third,
  .c-4.grid__col--medium-third,
  .c-5.grid__col--medium-third,
  .c-6.grid__col--medium-third,
  .c-7.grid__col--medium-third,
  .c-8.grid__col--medium-third,
  .c-9.grid__col--medium-third,
  .c-10.grid__col--medium-third,
  .c-11.grid__col--medium-third,
  .c-12.grid__col--medium-third {
    width: 33.333344%;
  }
  .c-1.grid__col--medium-quarter,
  .c-2.grid__col--medium-quarter,
  .c-3.grid__col--medium-quarter,
  .c-4.grid__col--medium-quarter,
  .c-5.grid__col--medium-quarter,
  .c-6.grid__col--medium-quarter,
  .c-7.grid__col--medium-quarter,
  .c-8.grid__col--medium-quarter,
  .c-9.grid__col--medium-quarter,
  .c-10.grid__col--medium-quarter,
  .c-11.grid__col--medium-quarter,
  .c-12.grid__col--medium-quarter {
    width: 25%;
  }
}
@media only screen and (min-width: 601px) and (max-width: 768px) {
  .grid__col--hide-medium {
    display: none!important;
  }
}
@media only screen and (max-width:30em) {
  .c-1.grid__col--medium-half,
  .c-2.grid__col--medium-half,
  .c-3.grid__col--medium-half,
  .c-4.grid__col--medium-half,
  .c-5.grid__col--medium-half,
  .c-6.grid__col--medium-half,
  .c-7.grid__col--medium-half,
  .c-8.grid__col--medium-half,
  .c-9.grid__col--medium-half,
  .c-10.grid__col--medium-half,
  .c-11.grid__col--medium-half,
  .c-12.grid__col--medium-half {
    width: 100%;
  }
  .c-1.grid__col--medium-third,
  .c-2.grid__col--medium-third,
  .c-3.grid__col--medium-third,
  .c-4.grid__col--medium-third,
  .c-5.grid__col--medium-third,
  .c-6.grid__col--medium-third,
  .c-7.grid__col--medium-third,
  .c-8.grid__col--medium-third,
  .c-9.grid__col--medium-third,
  .c-10.grid__col--medium-third,
  .c-11.grid__col--medium-third,
  .c-12.grid__col--medium-third {
    width: 100%;
  }
  .c-1.grid__col--medium-quarter,
  .c-2.grid__col--medium-quarter,
  .c-3.grid__col--medium-quarter,
  .c-4.grid__col--medium-quarter,
  .c-5.grid__col--medium-quarter,
  .c-6.grid__col--medium-quarter,
  .c-7.grid__col--medium-quarter,
  .c-8.grid__col--medium-quarter,
  .c-9.grid__col--medium-quarter,
  .c-10.grid__col--medium-quarter,
  .c-11.grid__col--medium-quarter,
  .c-12.grid__col--medium-quarter {
    width: 100%;
  }
  .c-1.grid__col--narrow-half,
  .c-2.grid__col--narrow-half,
  .c-3.grid__col--narrow-half,
  .c-4.grid__col--narrow-half,
  .c-5.grid__col--narrow-half,
  .c-6.grid__col--narrow-half,
  .c-7.grid__col--narrow-half,
  .c-8.grid__col--narrow-half,
  .c-9.grid__col--narrow-half,
  .c-10.grid__col--narrow-half,
  .c-11.grid__col--narrow-half,
  .c-12.grid__col--narrow-half {
    width: 50%;
  }
  .c-1.grid__col--narrow-third,
  .c-2.grid__col--narrow-third,
  .c-3.grid__col--narrow-third,
  .c-4.grid__col--narrow-third,
  .c-5.grid__col--narrow-third,
  .c-6.grid__col--narrow-third,
  .c-7.grid__col--narrow-third,
  .c-8.grid__col--narrow-third,
  .c-9.grid__col--narrow-third,
  .c-10.grid__col--narrow-third,
  .c-11.grid__col--narrow-third,
  .c-12.grid__col--narrow-third {
    width: 33.333344%;
  }
  .c-1.grid__col--narrow-quarter,
  .c-2.grid__col--narrow-quarter,
  .c-3.grid__col--narrow-quarter,
  .c-4.grid__col--narrow-quarter,
  .c-5.grid__col--narrow-quarter,
  .c-6.grid__col--narrow-quarter,
  .c-7.grid__col--narrow-quarter,
  .c-8.grid__col--narrow-quarter,
  .c-9.grid__col--narrow-quarter,
  .c-10.grid__col--narrow-quarter,
  .c-11.grid__col--narrow-quarter,
  .c-12.grid__col--narrow-quarter {
    width: 25%;
  }
  .c-1.grid__col--hide-narrow,
  .c-2.grid__col--hide-narrow,
  .c-3.grid__col--hide-narrow,
  .c-4.grid__col--hide-narrow,
  .c-5.grid__col--hide-narrow,
  .c-6.grid__col--hide-narrow,
  .c-7.grid__col--hide-narrow,
  .c-8.grid__col--hide-narrow,
  .c-9.grid__col--hide-narrow,
  .c-10.grid__col--hide-narrow,
  .c-11.grid__col--hide-narrow,
  .c-12.grid__col--hide-narrow {
    display: none!important;
  }
}
@media only screen and (max-width:20em) {
  .c-1.grid__col--narrow-half,
  .c-2.grid__col--narrow-half,
  .c-3.grid__col--narrow-half,
  .c-4.grid__col--narrow-half,
  .c-5.grid__col--narrow-half,
  .c-6.grid__col--narrow-half,
  .c-7.grid__col--narrow-half,
  .c-8.grid__col--narrow-half,
  .c-9.grid__col--narrow-half,
  .c-10.grid__col--narrow-half,
  .c-11.grid__col--narrow-half,
  .c-12.grid__col--narrow-half {
    width: 100%;
  }
  .c-1.grid__col--narrow-third,
  .c-2.grid__col--narrow-third,
  .c-3.grid__col--narrow-third,
  .c-4.grid__col--narrow-third,
  .c-5.grid__col--narrow-third,
  .c-6.grid__col--narrow-third,
  .c-7.grid__col--narrow-third,
  .c-8.grid__col--narrow-third,
  .c-9.grid__col--narrow-third,
  .c-10.grid__col--narrow-third,
  .c-11.grid__col--narrow-third,
  .c-12.grid__col--narrow-third {
    width: 100%;
  }
  .c-1.grid__col--narrow-quarter,
  .c-2.grid__col--narrow-quarter,
  .c-3.grid__col--narrow-quarter,
  .c-4.grid__col--narrow-quarter,
  .c-5.grid__col--narrow-quarter,
  .c-6.grid__col--narrow-quarter,
  .c-7.grid__col--narrow-quarter,
  .c-8.grid__col--narrow-quarter,
  .c-9.grid__col--narrow-quarter,
  .c-10.grid__col--narrow-quarter,
  .c-11.grid__col--narrow-quarter,
  .c-12.grid__col--narrow-quarter {
    width: 100%;
  }
  .c-1.grid__col--hide-mobile,
  .c-2.grid__col--hide-mobile,
  .c-3.grid__col--hide-mobile,
  .c-4.grid__col--hide-mobile,
  .c-5.grid__col--hide-mobile,
  .c-6.grid__col--hide-mobile,
  .c-7.grid__col--hide-mobile,
  .c-8.grid__col--hide-mobile,
  .c-9.grid__col--hide-mobile,
  .c-10.grid__col--hide-mobile,
  .c-11.grid__col--hide-mobile,
  .c-12.grid__col--hide-mobile {
    display: none!important;
  }
}
/**! ==================================================
 * GLOBAL/Helpers
 *
 * ================================================== */
hr {
  margin: 7.5rem 0;
  border: none;
  border-top: 1px solid #D5E1E2;
}
@media only screen and (max-width:64em) {
  hr {
    margin: 5rem 0;
  }
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.spacer {
  margin: 2rem 0;
}
@media only screen and (max-width:64em) {
  .spacer {
    margin: 1rem 0;
  }
}
.no-paddings {
  padding: 0 !important;
}
.no-margins {
  margin: 0 !important;
}
.no-border {
  border: none !important;
}
.no-overflow {
  overflow: hidden !important;
}
.is-clickable {
  cursor: pointer;
}
.is-disabled {
  opacity: 0.5;
  cursor: default;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.align-center {
  text-align: center;
}
.theme-dark {
  color: white;
}
.theme-dark p,
.theme-dark a,
.theme-dark li,
.theme-dark .btn--secondary {
  color: #DCE6E6;
}
.theme-dark a:hover,
.theme-dark .btn--secondary:hover,
.theme-dark a:focus,
.theme-dark .btn--secondary:focus {
  color: white;
}
.theme-light p,
.theme-light a,
.theme-light li {
  color: #00414B;
}
.theme-light a:hover,
.theme-light a:focus {
  color: #00414B;
}
.theme-light h1,
.theme-light h2,
.theme-light h3,
.theme-light h4 {
  color: #00414B;
}
.bg-light {
  background: #EBF0F0;
}
.bg-medium-dark {
  background: #235A64;
}
.bg-dark {
  background: #00414B;
}
.svg-icon {
  vertical-align: middle;
}
/**! ==================================================
 * COMPONENTS/Image
 *
 * ================================================== */
figure {
  margin: 0 0 2rem 0;
}
figcaption {
  padding: 0.5em 0;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 4px;
  vertical-align: middle;
}
.icon--12 {
  width: 12px;
  height: 12px;
}
.icon--24 {
  width: 24px;
  height: 24px;
}
.icon--48 {
  width: 48px;
  height: 48px;
}
.content-image-small {
  max-width: 400px;
}
@media only screen and (max-width:48em) {
  .content-image-small {
    max-width: 100%;
  }
}
/**! ==================================================
 * GLOBAL/Typo
 *  Typography
 * ================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem 0;
  line-height: 1.5em;
  text-rendering: optimizelegibility;
  word-wrap: break-word;
}
h1,
.headline-h1 {
  font-weight: 700;
  font-size: 60px;
  font-size: 3.75rem;
  color: white;
  letter-spacing: -1px;
  line-height: 68px;
  margin-bottom: 32px;
}
@media only screen and (max-width:64em) {
  h1,
  .headline-h1 {
    font-size: 32px;
    font-size: 2rem;
    letter-spacing: -0.4px;
    line-height: 40px;
    margin-bottom: 1.5rem;
  }
}
h2,
.headline-h2 {
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 56px;
  margin-top: 0;
  margin-bottom: 3rem;
}
h2:first-child,
.headline-h2:first-child {
  margin-top: 0;
}
@media only screen and (max-width:64em) {
  h2,
  .headline-h2 {
    font-size: 27px;
    font-size: 1.6875rem;
    line-height: 36px;
    letter-spacing: 0;
    margin-bottom: 1.5rem;
  }
}
h3,
.headline-h3 {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 40px;
  margin-bottom: 2rem;
  margin-top: 6rem;
}
h3:first-child,
.headline-h3:first-child {
  margin-top: 0;
}
@media only screen and (max-width:64em) {
  h3,
  .headline-h3 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 32px;
    letter-spacing: 0;
    margin-bottom: 1rem;
    margin-top: 4rem;
  }
}
h4,
.headline-h4 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 32px;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width:64em) {
  h4,
  .headline-h4 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 28px;
    letter-spacing: -0.2px;
    margin-bottom: 1rem;
    margin-top: 3rem;
  }
}
h4:first-child,
.headline-h4:first-child {
  margin-top: 0;
}
.lead-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 32px;
  margin-bottom: 3.5rem;
  letter-spacing: -0.2px;
}
@media only screen and (max-width:64em) {
  .lead-text {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 28px;
  }
}
.helper-text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 20px;
}
.theme-light .helper-text {
  color: #537D82;
}
.theme-light .helper-text a {
  color: inherit;
}
@media only screen and (max-width:64em) {
  .helper-text {
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 18px;
    letter-spacing: 0;
  }
}
a {
  text-decoration: none;
}
a picture {
  display: block;
}
p {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 28px;
}
p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width:64em) {
  p {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 24px;
    margin-bottom: 1rem;
  }
}
p a:not(.btn) {
  font-weight: 500;
  border-bottom: 1px solid;
  border-bottom-color: currentColor;
  padding-bottom: 1px;
  color: inherit;
}
p a:not(.btn):hover,
p a:not(.btn):focus {
  border-bottom-width: 2px;
  border-bottom-color: currentColor;
  padding-bottom: 0;
}
.link-list {
  padding: 0;
}
.link-list__item {
  list-style: none;
  padding-left: 1rem;
  text-indent: -1rem;
}
.link-list__item svg {
  color: #6E9196;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.link-list a {
  font-weight: 500;
  border-bottom: 1px solid;
  border-bottom-color: currentColor;
  padding-bottom: 1px;
}
.link-list a:hover,
.link-list a:focus {
  border-bottom-width: 2px;
  border-bottom-color: currentColor;
  padding-bottom: 0;
}
ul,
ol {
  margin: 0 0 1rem 0;
  padding-left: 1em;
}
ul li,
ol li {
  margin-bottom: 1rem;
  color: #00414B;
  font-size: 17px;
  font-size: 1.0625rem;
}
@media only screen and (max-width:64em) {
  ul li,
  ol li {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
ol {
  padding-left: 1.3em;
}
.content ul:not(.slider-nav__dots):not(.link-list):not(.event-teasers-list) {
  margin-bottom: 3rem;
  padding: 0;
}
.content ul:not(.slider-nav__dots):not(.link-list):not(.event-teasers-list):last-child {
  margin-bottom: 0;
}
.content ul:not(.slider-nav__dots):not(.link-list):not(.event-teasers-list) li {
  margin-bottom: 1.5rem;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.content ul:not(.slider-nav__dots):not(.link-list):not(.event-teasers-list) li::before {
  content: "•";
  padding-right: 1rem;
  color: currentColor;
  font-family: initial;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 10px;
  position: relative;
  top: 2px;
}
strong,
b {
  font-weight: 500;
}
em,
i {
  font-style: italic;
}
.text-small {
  font-size: 75%;
}
.fw-bold {
  font-weight: 700;
}
.fw-medium {
  font-weight: 500;
}
.fw-book {
  font-weight: 400;
}
.fontstyle-uppercase {
  text-transform: uppercase;
  letter-spacing: 1px;
}
.icon-link {
  padding: 0.25rem 0;
  font-weight: 500;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  letter-spacing: 0.2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.icon-link svg {
  margin-right: 0.5rem;
  vertical-align: middle;
  margin-right: 0.75rem;
}
.icon-link:hover,
.icon-link:focus {
  -webkit-transform: translateX(0.25rem);
          transform: translateX(0.25rem);
}
.icon-link.icon-left svg {
  margin-right: 0.75rem;
}
.icon-link.icon-right svg {
  margin-left: 0.75rem;
}
table {
  font-size: 17px;
  font-size: 1.0625rem;
}
/**! ==================================================
* GLOBAL/Body
* Content Styling
* ================================================== */
.content {
  padding-top: 6rem;
}
@media only screen and (max-width:64em) {
  .content {
    padding-top: 3rem;
  }
}
@media only screen and (max-width:30em) {
  .content {
    padding-top: 3rem;
  }
}
.contentwrap {
  max-width: 90em;
  height: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.contentwrap--narrow {
  max-width: 78.75em;
}
.innerwrap {
  width: 89.489%;
  margin: 0 auto;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
@media only screen and (max-width:74.75em) {
  .innerwrap {
    width: 95%;
  }
}
@media only screen and (max-width:64em) {
  .innerwrap {
    width: 100%;
    max-width: 1024px;
    max-width: 840px;
  }
}
@media only screen and (max-width:48em) {
  .innerwrap {
    max-width: 680px;
  }
}
.milestones {
  max-width: 50em;
  padding: 0 4rem;
}
@media only screen and (max-width:64em) {
  .milestones {
    padding: 0 2rem;
  }
}
@media only screen and (max-width:48em) {
  .milestones {
    padding: 0 1rem;
    margin-top: -2rem;
    margin-bottom: -2rem;
  }
}
.jobs-list {
  padding-top: 1rem;
  margin-bottom: -4rem !important;
}
.event-list {
  margin-bottom: -4rem !important;
}
.stories-list,
.project-list,
.jobs-list {
  padding-top: 1rem;
  margin-bottom: -3rem !important;
}
.values {
  padding: 0;
  margin: 0;
  counter-reset: li;
  max-width: 60em;
  margin-left: -148px;
}
@media only screen and (max-width: 96.75em) {
  .values {
    margin-left: 0;
  }
}
@media only screen and (max-width:64em) {
  .values {
    max-width: 50em;
  }
}
.value {
  margin-bottom: 4rem;
  list-style: none;
  counter-increment: li;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width:48em) {
  .value {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3rem;
  }
  .value .lead-text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.value::before {
  content: counter(li);
  color: #FFE900;
  margin-right: 3rem;
  font-size: 170px;
  font-size: 10.625rem;
  font-weight: 700;
  line-height: 0.8;
  width: 100px;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
@media only screen and (max-width:64em) {
  .value::before {
    font-size: 100px;
    font-size: 6.25rem;
    margin-right: 2rem;
  }
}
@media only screen and (max-width:48em) {
  .value::before {
    text-align: left;
    margin: 0 0 1rem;
    font-size: 80px;
    font-size: 5rem;
  }
}
@media only screen and (max-width:48em) {
  .interview-intro.flex-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .interview-intro .sidebar {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}
.interview > *:not(figure):not(.quote-wrap) {
  max-width: 735px;
  margin-left: auto;
  margin-right: auto;
}
.interview .quote {
  width: 100%;
  max-width: 735px;
}
.interview figure {
  margin-bottom: 8.75rem;
}
@media only screen and (max-width:64em) {
  .interview figure {
    margin-bottom: 5rem;
  }
}
.interview p + figure {
  margin-top: 8.75rem;
}
@media only screen and (max-width:64em) {
  .interview p + figure {
    margin-top: 5rem;
  }
}
.interview--extended {
  margin-top: 4rem;
  display: none;
}
.interview--extended.is-visible {
  display: block;
}
.extend-interview-teaser {
  margin: 8.75rem auto;
}
@media only screen and (max-width:64em) {
  .extend-interview-teaser {
    margin: 5rem auto;
  }
}
.extend-interview-teaser.is-hidden {
  display: none;
}
.sidebar.c-5 {
  padding-left: 6rem;
}
@media only screen and (max-width:64em) {
  .sidebar.c-5 {
    padding-left: 3rem;
  }
}
@media only screen and (max-width:48em) {
  .sidebar.c-5 {
    padding-left: 0;
  }
}
@media only screen and (max-width:48em) {
  .sidebar {
    margin-top: 4rem;
  }
}
.contacts {
  width: 171.4%;
  margin: 4rem 0 2rem;
}
@media only screen and (max-width:48em) {
  .contacts {
    width: 100%;
  }
}
.contact {
  margin-bottom: 2rem;
}
.contact__image {
  margin-bottom: 1rem;
}
/**! ==================================================
 * MODULES
 * reusable blocks
 * ================================================== */
/**! ==================================================
 * MODULES/Header
 * reusable header module
 * ================================================== */
.header {
  background: #00414B;
  position: relative;
  height: 88px;
  padding: 0 2rem;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15), 0 1px 1px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15), 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:64em) {
  .header {
    height: 68px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    padding: 0 1rem;
  }
}
.header.is-hidden .main-nav,
.header.is-hidden .logo {
  display: none;
}
.home .header::after {
  content: '';
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #FFE900;
}
.header--scrolled {
  will-change: transform;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  padding-right: 0;
  height: 68px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media only screen and (max-width:64em) {
  .header--scrolled {
    display: none !important;
  }
}
.header--scrolled.is-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header--scrolled .main-nav {
  margin-left: 2rem;
}
.header--scrolled::after {
  display: none;
}
.header--scrolled .btn {
  margin-left: auto;
  font-size: 15px;
  font-size: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo {
  display: inline-block;
  height: 100%;
  padding: 1.5rem 0;
}
.header--scrolled .logo {
  padding: 1rem 0;
}
.logo img {
  height: 100%;
}
@media only screen and (max-width:64em) {
  .logo--desktop {
    display: none;
  }
}
.logo--mobile {
  display: none;
  padding: 1rem 0;
}
@media only screen and (max-width:64em) {
  .logo--mobile {
    display: inline-block;
  }
}
.logo__name {
  display: inline-block;
  margin-left: 0.25rem;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  color: white;
  letter-spacing: 0.1px;
}
@media only screen and (max-width:30em) {
  .logo__name {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.burger-btn {
  display: none;
  padding: 4px 0;
  outline: none;
  background: none;
  border: 0;
  color: #ffffff;
}
.burger-btn svg {
  vertical-align: middle;
}
@media only screen and (max-width:64em) {
  .burger-btn {
    display: inline-block;
  }
}
/**! ==================================================
 * MODULES/Footer
 * reusable hero module
 * ================================================== */
.hero {
  min-height: 550px;
  height: calc(70vh -  88px);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right 20%;
  position: relative;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.hero--align-center {
  background-position: center right 20%;
}
@media only screen and (max-width:48em) {
  .tp-story .hero--align-center {
    background-position: center right 40%;
  }
}
@media only screen and (max-width:64em) {
  .tp-jobs .hero--align-center {
    background-position: top center;
  }
}
.hero--align-top {
  background-position: top 10% right 20%;
}
@media only screen and (max-width:64em) {
  .tp-jobs .hero--align-top {
    background-position: top center;
  }
}
.hero--align-bottom {
  background-position: bottom 10% right 20%;
}
@media only screen and (max-width:64em) {
  .hero--align-mobile-left {
    background-position-x: left;
  }
}
@media only screen and (max-width:64em) {
  .hero--align-mobile-center {
    background-position-x: center;
  }
}
@media only screen and (max-width:64em) {
  .hero--align-mobile-right {
    background-position-x: right;
  }
}
.hero::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(90deg, #000000, rgba(0, 0, 0, 0.5));
  opacity: 0.25;
  z-index: 0;
}
@media only screen and (max-width:90em) {
  .hero {
    height: calc(100vh - 88px);
    min-height: initial;
  }
}
@media screen and (max-aspect-ratio: 1/1) and (min-width: 640px) {
  .hero {
    height: calc(70vh -  88px);
  }
}
@media only screen and (max-width:30em) {
  .hero {
    height: calc(100vh - 88px + 40px);
  }
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  height: 100%;
  padding: 0 0 8.75rem;
}
@media only screen and (max-width:64em) {
  .hero__content {
    padding: 0 0 5rem;
  }
}
.hero__headline {
  max-width: 800px;
}
@media only screen and (max-width:64em) {
  .hero__headline {
    margin-bottom: 1rem;
  }
}
.hero__subline {
  font-weight: 500;
  font-size: 22px;
  font-size: 1.375rem;
  color: white;
  letter-spacing: -0.2px;
  line-height: 32px;
  max-width: 800px;
  margin-top: 0;
  margin-bottom: 24px;
}
@media only screen and (max-width:64em) {
  .hero__subline {
    font-size: 16px;
    font-size: 1rem;
    line-height: 26px;
    letter-spacing: -0.2px;
    max-width: 80%;
  }
}
@media only screen and (max-width:30em) {
  .hero__subline {
    max-width: 100%;
  }
}
.scroller {
  color: white;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 0;
  display: none;
}
@media only screen and (max-width:90em) {
  .scroller {
    display: block;
  }
}
@media only screen and (max-width:64em) {
  .scroller {
    padding: 1.25rem 0;
  }
}
.scroller__inner {
  display: inline-block;
  cursor: pointer;
}
.scroller__inner:hover .scroller__text,
.scroller__inner:focus .scroller__text {
  text-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
}
.scroller__text {
  display: block;
  color: white;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.scroller svg {
  color: inherit;
  -webkit-animation: 0.5s ease-in infinite alternate scroller-bounce;
          animation: 0.5s ease-in infinite alternate scroller-bounce;
}
/**! ==================================================
* MODULES/Navbar
* reusable navbar
* ================================================== */
.nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__item {
  display: inline-block;
  margin-right: 2rem;
  margin-bottom: 0;
}
.nav__item:last-child {
  margin-right: 0;
}
.main-nav {
  height: 100%;
  margin-left: auto;
}
@media only screen and (max-width:64em) {
  .main-nav {
    display: none;
  }
}
.main-nav ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-nav .nav__item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.main-nav .nav__item.is-active::after {
  content: '';
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #FFE900;
}
.main-nav .nav__item.is-active a {
  color: #ffffff;
}
.main-nav .nav__item a {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  color: #B4C8CD;
  letter-spacing: 0.1px;
  line-height: 20px;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.main-nav .nav__item a:hover,
.main-nav .nav__item a:focus {
  color: #DCE6E6;
}
.mobile-nav {
  position: relative;
  border-top: 1px solid #235A64;
  padding: 1rem 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #235A64;
}
.mobile-nav ul {
  margin-left: -1rem;
}
.mobile-nav li {
  padding: 0.75rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  letter-spacing: -0.2px;
  font-weight: 500;
  color: #DCE6E6;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  -webkit-transform: translateX(0.25rem);
          transform: translateX(0.25rem);
  color: #ffffff;
}
.mobile-nav-content__inner {
  padding: 1rem 2rem;
}
/**! ==================================================
* MODULES/Subnav
* reusable subnav
* ================================================== */
.subnav-wrap {
  padding-top: 2rem;
}
.subnav {
  height: 100%;
  height: 53px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0 -1px 0 #D5E1E2 inset;
          box-shadow: 0 -1px 0 #D5E1E2 inset;
}
.subnav::before {
  content: '';
  width: 60px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  position: absolute;
  right: 0;
  bottom: 1px;
  z-index: 5;
  pointer-events: none;
}
.subnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  margin-bottom: -10px;
}
.subnav .subnav__item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-right: 2rem;
  margin-bottom: 0;
}
.subnav .subnav__item:last-child {
  margin-right: 0;
}
.subnav .subnav__item:last-child::after {
  content: '';
  display: block;
  width: 50px;
  height: 100%;
}
.subnav .subnav__item.is-active a {
  color: #00414B;
}
.subnav .subnav__item.is-active a:hover,
.subnav .subnav__item.is-active a:focus {
  color: inherit;
}
.subnav .subnav__item.is-active a::after {
  content: '';
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #FFE900;
}
.subnav .subnav__item a {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #537D82;
  letter-spacing: 0.1px;
  line-height: 20px;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.subnav .subnav__item a:hover,
.subnav .subnav__item a:focus {
  color: #2D6069;
}
/**! ==================================================
* MODULES/Drawer
* ================================================== */
.drawer {
  position: fixed;
  z-index: 1000;
  height: 100vh;
  left: 0;
  top: 0;
  width: 100%;
  visibility: visible;
  -webkit-transition: 0.45s;
  transition: 0.45s;
}
.drawer.is-hidden {
  z-index: -1;
  visibility: hidden;
}
.drawer.is-hidden .drawer__background {
  opacity: 0;
}
.drawer.is-hidden .drawer-content {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.drawer__background {
  background-color: #25454c;
  height: 100%;
  width: 100%;
  opacity: 0.7;
  position: fixed;
  -webkit-transition: opacity 0.45s;
  transition: opacity 0.45s;
  -webkit-transition-timing-function: cubic-bezier(0.1, 0, -0.15, 1);
          transition-timing-function: cubic-bezier(0.1, 0, -0.15, 1);
}
.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  overflow: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.45s;
  transition: -webkit-transform 0.45s;
  transition: transform 0.45s;
  transition: transform 0.45s, -webkit-transform 0.45s;
  -webkit-transition-timing-function: cubic-bezier(0.1, 0, -0.15, 1);
          transition-timing-function: cubic-bezier(0.1, 0, -0.15, 1);
  height: 100%;
  width: 360px;
}
@media only screen and (max-width:30em) {
  .drawer-content {
    width: 100%;
  }
}
.drawer-content__inner {
  position: relative;
  background-color: #00414B;
  overflow-x: hidden;
  min-height: 100%;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
}
.drawer-content__header {
  background: #144E59;
  padding: 1rem;
  min-height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  padding: 4px 0;
  color: #DCE6E6;
}
.close-btn:focus,
.close-btn:hover {
  color: #ffffff;
}
.mobile-nav-drawer {
  display: none;
}
@media only screen and (max-width:64em) {
  .mobile-nav-drawer {
    display: block;
  }
}
/**! ==================================================
 * MODULES/Section
 * reusable section module
 * ================================================== */
.section {
  position: relative;
  margin: 8.75rem auto;
}
@media only screen and (max-width:64em) {
  .section {
    margin: 5rem auto;
  }
}
.section:last-child {
  margin-bottom: 0;
}
.section[class*="bg-"]:not(.section--narrow) {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media only screen and (max-width:64em) {
  .section[class*="bg-"]:not(.section--narrow) {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width:48em) {
  .section[class*="bg-"]:not(.section--narrow) {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.section--narrow {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media only screen and (max-width:64em) {
  .section--narrow {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.section-label {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 32px;
  margin-bottom: 1rem;
  color: #537D82;
}
.theme-dark .section-label {
  color: #91AFB4;
}
@media only screen and (max-width:64em) {
  .section-label {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 28px;
  }
}
.section-label--small {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  margin-bottom: 0.5rem;
}
/**! ==================================================
 * MODULES/Quote
 * reusable quote module
 * ================================================== */
.quote {
  position: relative;
  margin: 8.75rem auto;
  width: 110%;
}
@media only screen and (max-width:64em) {
  .quote {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 24px;
    margin-bottom: 5rem;
    margin-top: 5rem;
    width: 100%;
  }
}
.quote::before {
  content: '';
  background-image: url('../img/quote.svg');
  background-repeat: no-repeat;
  position: absolute;
  width: 105px;
  height: 86px;
  left: -135px;
}
@media only screen and (max-width: 96.75em) {
  .quote::before {
    float: left;
    position: static;
    margin-right: 1.5rem;
    margin-left: -0.5rem;
  }
}
@media only screen and (max-width:64em) {
  .quote::before {
    width: 69px;
    height: 57px;
    margin-right: 1rem;
    margin-left: 0;
  }
}
.quote p {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 48px;
  margin-bottom: 2rem;
  color: #00414B;
}
@media only screen and (max-width:64em) {
  .quote p {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 32px;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width:48em) {
  .quote p {
    width: 90%;
  }
}
@media only screen and (max-width:30em) {
  .quote p {
    width: 100%;
  }
}
.quote__author {
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #537D82;
  letter-spacing: 0.1px;
  line-height: 20px;
}
.quote-wrap {
  padding-left: 2rem;
  padding-right: 2rem;
}
.quote-wrap .quote {
  margin: 3.75rem auto;
}
@media only screen and (max-width:64em) {
  .quote-wrap .quote {
    margin: 0 auto;
  }
  .quote-wrap .quote p:last-child {
    margin-bottom: 0;
  }
}
.image-quote {
  margin: 4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 150%;
}
.image-quote:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width:48em) {
  .image-quote {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.image-quote .quote {
  margin: 0;
  padding-top: 1rem;
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 60%;
          flex: 1 1 60%;
  margin-left: 4rem;
}
@media only screen and (max-width:64em) {
  .image-quote .quote {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    margin-left: 2rem;
  }
}
@media only screen and (max-width:48em) {
  .image-quote .quote {
    margin-left: 0;
    margin-top: 0;
    padding-top: 0;
  }
}
.image-quote .quote::before {
  display: none;
}
.image-quote .quote p {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 32px;
}
@media only screen and (max-width:64em) {
  .image-quote .quote p {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 28px;
  }
}
.image-quote__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
}
@media only screen and (max-width:64em) {
  .image-quote__image {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
/**! ==================================================
 * MODULES/Card
 * reusable card module
 * ================================================== */
.card {
  position: relative;
  padding: 2rem;
}
@media only screen and (max-width:64em) {
  .card {
    padding: 1.5rem;
  }
}
@media only screen and (max-width:48em) {
  .card {
    padding: 1rem;
  }
}
.card > *:last-child {
  margin-bottom: 0;
}
.card .btn {
  margin-right: 0;
}
.sidebar .card {
  margin-bottom: 4rem;
}
.sidebar .card:last-child {
  margin-bottom: 0;
}
/**! ==================================================
* MODULES/Teasers
* reusable teaser modules
* ================================================== */
.teasers__headline {
  margin-bottom: 3rem;
}
.teaser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.teaser__headline {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 0;
}
.teaser__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: auto;
}
.teaser__footer {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 2rem;
}
.event-teasers-list {
  margin: 0;
  margin-bottom: 2rem;
  padding: 0;
}
.event-teasers-list__item {
  list-style: none;
}
.event-teasers-list__item:last-child {
  margin-bottom: 0;
}
.event-teaser {
  margin-bottom: 2rem;
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}
.event-list .event-teaser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.event-teaser__date {
  display: block;
  font-weight: 500;
  margin-bottom: 1rem;
}
.event-teaser__text {
  font-weight: 400;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  margin-top: 0;
  margin-bottom: 1rem;
}
.event-teaser__text p {
  margin-bottom: 0;
}
.event-teaser__link {
  display: inline-block;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.event-teaser__link:hover,
.event-teaser__link:focus {
  -webkit-transform: translateX(0.25rem);
          transform: translateX(0.25rem);
}
.event-teaser__location {
  color: #537D82;
  font-size: 15px;
  font-size: 0.9375rem;
  display: inline-block;
  line-height: 1.5;
  margin-top: 0.25rem;
}
.event-teaser__footer {
  margin-top: auto;
}
.event-teaser--small {
  margin-bottom: 1rem;
}
.event-teaser--small .event-teaser__date {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 28px;
  margin-bottom: 0;
}
.event-teaser--small .event-teaser__text {
  color: #91AFB4;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1px;
  line-height: 20px;
}
.event-teaser--old {
  opacity: 0.5;
}
.project-teaser {
  margin-bottom: 2rem;
}
.project-teaser__img {
  margin-bottom: 1rem;
}
.project-teaser__headline {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 0;
}
.project-teaser__summary {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding-right: 1rem;
  margin-bottom: auto;
}
.project-teaser__footer {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 2rem;
}
.story-teasers .headline-h3 {
  margin-bottom: 4rem;
}
@media only screen and (max-width:64em) {
  .story-teasers .headline-h3 {
    margin-bottom: 2rem;
  }
}
.story-teaser-big {
  position: relative;
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.story-teaser-big:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width:48em) {
  .story-teaser-big {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.story-teaser-big__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 3rem 4rem;
}
@media only screen and (max-width:64em) {
  .story-teaser-big__inner {
    padding: 2rem;
  }
}
@media only screen and (max-width:48em) {
  .story-teaser-big__inner {
    padding: 1rem;
  }
}
.story-teaser-big__textwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 60%;
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
@media only screen and (max-width:48em) {
  .story-teaser-big__textwrap {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.story-teaser-big__label {
  font-weight: 500;
}
.story-teaser-big__headline {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 2rem;
}
@media only screen and (max-width:64em) {
  .story-teaser-big__headline {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width:48em) {
  .story-teaser-big__headline {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.story-teaser-big__subline {
  margin-bottom: 2rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.story-teaser-big__footer {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: auto;
}
.story-teaser-big__img {
  position: absolute;
  bottom: 0;
  right: 2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  width: auto !important;
}
.story-teaser-big__img img {
  max-width: 445px;
  float: right;
}
@media only screen and (max-width:64em) {
  .story-teaser-big__img img {
    max-width: 80%;
  }
}
@media only screen and (max-width:48em) {
  .story-teaser-big__img {
    position: relative;
    left: initial;
    right: initial;
    bottom: initial;
    padding-left: 1rem;
    padding-bottom: 75%;
    width: 100% !important;
  }
  .story-teaser-big__img img {
    position: absolute;
    bottom: 0;
    max-width: 60%;
  }
}
.story-teaser-small {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-bottom: 2rem;
}
.owl-item .story-teaser-small {
  margin-bottom: 1rem;
}
.story-teaser-small__headline {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 1rem;
  margin-top: 0;
  margin-right: 1rem;
}
@media only screen and (max-width:48em) {
  .story-teaser-small__headline {
    margin-right: 0;
  }
}
.story-teaser-small__text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: auto;
}
.story-teaser-small__img {
  margin-bottom: 1rem;
}
.story-teaser-small__footer {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 2rem;
}
@media only screen and (max-width:48em) {
  .page-teaser {
    margin-bottom: 2rem;
  }
}
.page-teaser .teaser__content p {
  padding-right: 2rem;
}
@media only screen and (max-width:20em) {
  .page-teaser .teaser__content {
    padding-right: 0;
  }
}
.job-teaser {
  margin-bottom: 2rem;
}
.job-teaser .teaser__content p {
  padding-right: 2rem;
}
@media only screen and (max-width:20em) {
  .job-teaser .teaser__content {
    padding-right: 0;
  }
}
.card-teaser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.card-teaser__headline {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.card-teaser__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: auto;
}
.card-teaser__content p {
  color: #D5E1E2;
}
.theme-dark .card-teaser__content p {
  color: #B4C8CD;
}
.card-teaser__footer {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 2rem;
}
/**! ==================================================
 * MODULES/KPI
 * reusable kpi module
 * ================================================== */
.kpi {
  margin-bottom: 4rem;
}
@media only screen and (max-width:48em) {
  .kpi {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.kpi:last-child {
  margin-bottom: 0;
}
.kpi.align-bottom {
  margin-top: auto;
}
.kpi.align-bottom + .kpi.align-bottom {
  margin-top: initial;
}
.kpi__number {
  display: inline-block;
  font-weight: 700;
  font-size: 130px;
  font-size: 8.125rem;
  color: #FFE900;
  line-height: 0.8;
  margin-bottom: 1rem;
}
@media only screen and (max-width:74.75em) {
  .kpi__number {
    font-size: 110px;
    font-size: 6.875rem;
  }
}
@media only screen and (max-width:64em) {
  .kpi__number {
    font-size: 80px;
    font-size: 5rem;
  }
}
.kpi__text {
  color: #00414B;
  margin-top: 0;
  margin-left: 1rem;
}
@media only screen and (max-width:64em) {
  .kpi__text {
    margin-left: 0.5rem;
  }
}
@media only screen and (max-width:48em) {
  .kpi__text {
    margin-left: 0;
  }
}
.circle-diagram {
  position: relative;
  min-width: 200px;
  max-width: 480px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.circle-diagram svg {
  display: block !important;
}
.sidebar .circle-diagram {
  max-width: 335px;
  padding: 0 1rem;
}
@media only screen and (max-width:48em) {
  .sidebar .circle-diagram {
    max-width: 250px;
    min-width: 250px;
  }
}
.circle-diagram__inner {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.circle-diagram__svg {
  display: inline-block;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.circle-diagram__track {
  stroke-width: 12px;
  stroke: #EBF0F0;
}
.circle-diagram__line {
  stroke-width: 12px;
  stroke-dasharray: 314.159%;
  -webkit-transition: 1.5s ease-in-out;
  transition: 1.5s ease-in-out;
  stroke: #FFE900;
}
.circle-diagram__text {
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 1rem;
}
.circle-diagram__value {
  color: #00414B;
  margin-bottom: 0;
}
.circle-diagram__label {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #537D82;
  line-height: 28px;
}
/**! ==================================================
 * MODULES/Quote
 * reusable slider module
 * ================================================== */
.slider {
  position: relative;
}
.slider-wrap {
  overflow: hidden;
}
@media only screen and (max-width:44.375em) {
  .slider-wrap {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.slider-wrap--big {
  padding-top: 80px;
  margin-top: -104px;
}
.slider-wrap .story-teaser-big {
  margin-bottom: 0;
}
.slider-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3rem;
}
@media only screen and (max-width:64em) {
  .slider-nav {
    margin-top: 2rem;
  }
}
.slider-nav.disabled {
  display: none;
}
.slider-nav__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}
.slider-nav__dot {
  background: none;
  outline: none;
  text-indent: -999em;
  overflow: hidden;
  border: 0;
  padding: 0.75rem;
}
@media only screen and (max-width:20em) {
  .slider-nav__dot {
    padding: 0.75rem 0.5rem;
  }
}
.slider-nav__dot span {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #537D82;
  border-radius: 50%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.theme-dark .slider-nav__dot span {
  background-color: #91AFB4;
}
.slider-nav__dot.active span {
  background-color: #FFE900;
}
.slider-nav__dot.active span,
.slider-nav__dot:hover span,
.slider-nav__dot:focus span {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.slider-nav__arrow {
  border: 0;
  background: none;
  outline: none;
  color: #00414B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.theme-dark .slider-nav__arrow {
  color: #DCE6E6;
}
.slider-nav__arrow:disabled,
.slider-nav__arrow.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.slider-nav__arrow:last-child:not(.disabled):hover,
.slider-nav__arrow:last-child:not(.disabled):focus {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.slider-nav__arrow:first-child:not(.disabled):hover,
.slider-nav__arrow:first-child:not(.disabled):focus {
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}
/**! ==================================================
 * MODULES/Footer
 * reusable footer module
 * ================================================== */
.footer {
  background: #00414B;
  border-top: 4rem solid white;
  margin-top: 8.75rem;
}
@media only screen and (max-width:64em) {
  .footer {
    margin-top: 5rem;
  }
}
.footer-contactarea {
  background: #FFE900;
  padding: 3rem 3.75rem;
  margin-top: -4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media only screen and (max-width:48em) {
  .footer-contactarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 2.5rem 3.75rem;
  }
}
.footer-contactarea__img {
  margin-right: 2rem;
}
@media only screen and (max-width:48em) {
  .footer-contactarea__img {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
.footer-contactarea__img img {
  border-radius: 50%;
  max-width: 120px;
}
.footer-contactarea__text {
  padding-top: 0.5rem;
  margin-right: 2rem;
}
@media only screen and (max-width:48em) {
  .footer-contactarea__text {
    margin-right: 0;
  }
}
.footer-contactarea__text p,
.footer-contactarea__text a {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 32px;
  color: #00414B;
}
@media only screen and (max-width:64em) {
  .footer-contactarea__text p,
  .footer-contactarea__text a {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 28px;
  }
}
.footer-contactarea__circles {
  margin: 0 0 0 auto;
  padding: 0.5rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:48em) {
  .footer-contactarea__circles {
    margin: 1rem 0 0 0;
  }
}
.footer-contactarea__circles li {
  list-style: none;
  margin: 0 3rem 0 0;
}
.footer-contactarea__circles li:last-child {
  margin-right: 0;
}
.circle-link {
  display: inline-block;
  color: #00414B;
  text-align: center;
}
.circle-link:hover,
.circle-link:focus {
  color: #00414B;
}
.circle-link:hover .circle-link__circle,
.circle-link:focus .circle-link__circle {
  -webkit-box-shadow: inset 0 0 0 1px #00414B;
          box-shadow: inset 0 0 0 1px #00414B;
}
.circle-link__circle {
  width: 74px;
  height: 74px;
  border: 1px solid currentColor;
  -webkit-box-shadow: inset 0 0 0 0 #00414B;
          box-shadow: inset 0 0 0 0 #00414B;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-box-shadow 300ms ease-in-out;
  transition: -webkit-box-shadow 300ms ease-in-out;
  transition: box-shadow 300ms ease-in-out;
  transition: box-shadow 300ms ease-in-out, -webkit-box-shadow 300ms ease-in-out;
}
@media only screen and (max-width:48em) {
  .circle-link__circle {
    height: 60px;
    width: 60px;
  }
}
.circle-link__label {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1px;
}
@media only screen and (max-width:48em) {
  .circle-link__label {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.footer-brandbar {
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #235A64;
}
@media only screen and (max-width:48em) {
  .footer-brandbar {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-brandbar__logo img {
  max-height: 85px;
}
.footer-brandbar__slogan {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #DCE6E6;
  margin: 0;
}
@media only screen and (max-width:48em) {
  .footer-brandbar__slogan {
    display: none;
  }
}
.footer-meta {
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width:48em) {
  .footer-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.footer-meta a {
  display: inline-block;
  color: #DCE6E6;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
.footer-meta a:hover,
.footer-meta a:focus {
  color: #ffffff;
}
@media only screen and (max-width:48em) {
  .footer-meta__metalinks {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.footer-meta__metalinks ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width:48em) {
  .footer-meta__metalinks ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-meta__metalinks li {
  margin-right: 2rem;
  margin-bottom: 0;
}
.footer-meta__metalinks li:last-child {
  margin-right: 0;
}
@media only screen and (max-width:48em) {
  .footer-meta__metalinks li {
    margin: 0 1rem 0.5rem;
  }
}
.footer-meta__metalinks a,
.footer-meta__metalinks button {
  background: none;
  border: none;
  font-weight: 500;
  color: #DCE6E6;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: -0.2px;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  outline: none;
  padding: 0;
}
.footer-meta__metalinks a:hover,
.footer-meta__metalinks button:hover,
.footer-meta__metalinks a:focus,
.footer-meta__metalinks button:focus {
  color: #ffffff;
}
@media only screen and (max-width:48em) {
  .footer-meta__sociallinks {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin-bottom: 1rem;
  }
}
.footer-meta__sociallinks li {
  margin-bottom: 0;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
/*
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
      This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
      calculation of the height of the owl-item that breaks page layouts
     */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
/**! ==================================================
* COMPONENTS/Cookieconsent
* Cookie Banner
* ================================================== */
.cookieconsent p {
  font-size: 15px;
  font-size: 0.9375rem;
}
.cookieconsent p:last-child {
  margin-bottom: 0;
}
.cookieconsent h5 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #00414B;
}
.cookieconsent h6 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin: 1rem 0 0.25rem;
  color: #00414B;
}
.cookieconsent label {
  font-size: inherit;
}
.cookieconsent-banner {
  position: fixed;
  bottom: 0;
  z-index: 999999;
  width: 100%;
  padding: 1rem;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media only screen and (max-width: 480px) {
  .cookieconsent-banner {
    padding: 0;
  }
}
.cookieconsent-banner.is-hidden {
  opacity: 0;
  -webkit-transform: translateY(150%);
          transform: translateY(150%);
}
.cookieconsent-banner.theme-dark .cookieconsent-banner__inner {
  background-color: #00414B;
}
.cookieconsent-banner .cookieconsent-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  background-color: white;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 0;
}
@media only screen and (max-width: 768px) {
  .cookieconsent-banner .cookieconsent-banner__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.cookieconsent-banner .cookieconsent-banner__content {
  padding: 1rem;
  max-width: 100%;
}
.cookieconsent-banner .cookieconsent-banner__content a {
  white-space: nowrap;
}
.cookieconsent-banner .cookieconsent-banner__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: -6px;
  padding: 1rem;
}
@media only screen and (max-width: 768px) {
  .cookieconsent-banner .cookieconsent-banner__action {
    padding: 0 1rem 1rem 1rem;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media only screen and (max-width: 480px) {
  .cookieconsent-banner .cookieconsent-banner__action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-item-align: normal;
        align-self: normal;
  }
  .cookieconsent-banner .cookieconsent-banner__action .cookieconsent-button {
    width: 100%;
  }
}
.cookieconsent-preferences {
  max-width: 600px;
  max-height: 100%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 999999;
  padding: 1rem;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media only screen and (max-width: 480px) {
  .cookieconsent-preferences {
    padding: 0;
  }
}
.cookieconsent-preferences.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.cookieconsent-preferences h6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cookieconsent-preferences p {
  color: #00414B;
}
.cookieconsent-preferences .cookieconsent-preferences__inner {
  max-height: 100%;
  width: 100%;
  height: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: white;
  padding: 1.5rem;
  border-radius: 0;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 480px) {
  .cookieconsent-preferences .cookieconsent-preferences__inner {
    border-radius: 0;
    padding: 1rem;
  }
  .cookieconsent-preferences .cookieconsent-preferences__inner .cookieconsent-button {
    width: 100%;
  }
}
.cookieconsent-preferences .cookieconsent-preferences__action {
  margin: 1rem -6px -6px -6px;
}
@media only screen and (max-width: 480px) {
  .cookieconsent-preferences .cookieconsent-preferences__action {
    width: 100%;
  }
}
.cookieconsent-button--light {
  background: transparent;
  border: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  border-bottom: 1px solid;
  border-bottom-color: currentColor;
  padding-bottom: 1px;
  color: inherit;
  line-height: 17px;
}
.cookieconsent-button--light:hover,
.cookieconsent-button--light:focus {
  color: #ffffff;
  border-bottom: 2px solid;
}
.cookieconsent-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 6px;
  padding: 12px 20px;
  white-space: nowrap;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-decoration: none;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  outline: none;
  border-radius: 32px;
}
.cookieconsent-button.cookieconsent-button--secondary {
  background: none;
  border: 1px solid currentColor;
  -webkit-box-shadow: inset 0 0 0 0 currentColor;
          box-shadow: inset 0 0 0 0 currentColor;
  color: #00414B;
}
.cookieconsent-button.cookieconsent-button--secondary:hover,
.cookieconsent-button.cookieconsent-button--secondary:focus {
  background: none;
  color: #00414B;
  -webkit-box-shadow: inset 0 0 0 1px currentColor;
          box-shadow: inset 0 0 0 1px currentColor;
}
.theme-dark .cookieconsent-button.cookieconsent-button--secondary {
  color: white;
}
.cookieconsent-button.cookieconsent-button--primary {
  background-color: #FFE900;
  color: #00414B;
}
.cookieconsent-button.cookieconsent-button--primary:hover,
.cookieconsent-button.cookieconsent-button--primary:focus {
  background: #ffd619;
  color: #00414B;
}
.cookieconsent-switch {
  display: inline-block;
  position: relative;
  font-size: 0;
  line-height: 1;
  margin-left: 0.5rem;
}
.cookieconsent-switch .cookieconsent-switch__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 400;
  position: relative;
  cursor: pointer;
}
.cookieconsent-switch .cookieconsent-switch__label::before {
  content: " ";
  width: 2rem;
  height: 1rem;
  background-color: gray;
  border-radius: 3em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cookieconsent-switch .cookieconsent-switch__label::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.cookieconsent-switch .cookieconsent-switch__input {
  opacity: 0;
  position: absolute;
  margin: 0;
  width: 2em;
}
.cookieconsent-switch .cookieconsent-switch__input:checked + .cookieconsent-switch__label::before {
  background-color: #00414B;
}
.cookieconsent-switch .cookieconsent-switch__input:checked + .cookieconsent-switch__label::after {
  -webkit-transform: translateX(1rem);
          transform: translateX(1rem);
}
.cookieconsent-switch .cookieconsent-switch__input:disabled + .cookieconsent-switch__label {
  opacity: 0.4;
  cursor: not-allowed;
}
.cookieconsent-layer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.cookieconsent-layer.is-visible {
  opacity: 1;
  visibility: visible;
}
/**! ==================================================
* MODULES/Teaser Banner
* ================================================== */
.banner {
  background-color: #ffffff;
  width: 89.489%;
  margin: 0 auto;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}
@media only screen and (max-width:74.75em) {
  .banner {
    width: 95%;
  }
}
@media only screen and (max-width:64em) {
  .banner {
    width: 100%;
    max-width: 1024px;
    max-width: 840px;
  }
}
@media only screen and (max-width:48em) {
  .banner {
    max-width: 680px;
  }
}
.banner--fullwidth {
  margin: 0 auto;
  max-width: unset;
}
.banner__inner {
  background: #FFE900;
  padding: 3rem 3.75rem;
  margin-top: -4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  background-color: #00414B;
  margin-bottom: 4em;
  width: 100%;
  max-width: 90em;
  height: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
@media only screen and (max-width:48em) {
  .banner__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 2.5rem 3.75rem;
  }
}
.banner__inner__img {
  margin-right: 2rem;
}
@media only screen and (max-width:48em) {
  .banner__inner__img {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
.banner__inner__img img {
  border-radius: 50%;
  max-width: 120px;
}
.banner__inner__text {
  padding-top: 0.5rem;
  margin-right: 2rem;
}
@media only screen and (max-width:48em) {
  .banner__inner__text {
    margin-right: 0;
  }
}
.banner__inner__text p,
.banner__inner__text a {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 32px;
  color: #00414B;
}
@media only screen and (max-width:64em) {
  .banner__inner__text p,
  .banner__inner__text a {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 28px;
  }
}
.banner__inner__circles {
  margin: 0 0 0 auto;
  padding: 0.5rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width:48em) {
  .banner__inner__circles {
    margin: 1rem 0 0 0;
  }
}
.banner__inner__circles li {
  list-style: none;
  margin: 0 3rem 0 0;
}
.banner__inner__circles li:last-child {
  margin-right: 0;
}
.banner__inner--lg {
  padding: 6rem 3rem;
}
@media only screen and (max-width:48em) {
  .banner__inner--lg {
    padding: 4rem 3rem;
  }
}
@media only screen and (max-width:30em) {
  .banner__inner {
    padding: 2em 2em;
  }
}
.banner__overline {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 32px;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  color: #FFE900;
}
@media only screen and (max-width:64em) {
  .banner__overline {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 28px;
    letter-spacing: -0.2px;
    margin-bottom: 1rem;
    margin-top: 3rem;
  }
}
.banner__overline:first-child {
  margin-top: 0;
}
.banner__overline--lg {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 40px;
  margin-bottom: 2rem;
  margin-top: 6rem;
}
.banner__overline--lg:first-child {
  margin-top: 0;
}
@media only screen and (max-width:64em) {
  .banner__overline--lg {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 32px;
    letter-spacing: 0;
    margin-bottom: 1rem;
    margin-top: 4rem;
  }
}
.banner__headline {
  color: #ffffff;
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 56px;
  margin-top: 0;
  margin-bottom: 3rem;
  margin: 0;
}
.banner__headline:first-child {
  margin-top: 0;
}
@media only screen and (max-width:64em) {
  .banner__headline {
    font-size: 27px;
    font-size: 1.6875rem;
    line-height: 36px;
    letter-spacing: 0;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width:64em) {
  .banner__headline {
    margin: 0;
  }
}
@media only screen and (max-width:48em) {
  .banner__headline {
    margin-bottom: 1rem;
  }
}
.banner__headline--lg {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 56px;
  margin-top: 0;
  margin-bottom: 1em;
}
.banner__headline--lg:first-child {
  margin-top: 0;
}
@media only screen and (max-width:74.75em) {
  .banner__headline--lg {
    font-size: 48px;
    font-size: 3rem;
  }
}
@media only screen and (max-width:64em) {
  .banner__headline--lg {
    font-size: 27px;
    font-size: 1.6875rem;
    line-height: 36px;
    letter-spacing: 0;
    margin-bottom: 1.5rem;
  }
}
.banner__img {
  text-align: end;
}
@media only screen and (max-width:64em) {
  .banner__img {
    text-align: center;
  }
}
.banner__img--height {
  height: 100%;
}
.banner__col {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  margin: 0;
}
.banner__col .inner {
  height: 100%;
}
.banner__col.grid-pad {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.banner__col.grid-pad .flex-grid__col {
  padding: 1rem;
}
.banner__col.grid-pad--narrow {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}
.banner__col.grid-pad--narrow .flex-grid__col {
  padding: 0.25rem;
}
@media only screen and (max-width:48em) {
  .banner__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.banner__col--left {
  width: 16.666667%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:64em) {
  .banner__col--left {
    width: 25.000008%;
  }
}
@media only screen and (max-width:48em) {
  .banner__col--left {
    width: 100%;
  }
}
.banner__col--center {
  width: 58.333352%;
  padding-left: 1.5em;
}
@media only screen and (max-width:48em) {
  .banner__col--center {
    width: 100%;
    padding-left: 0;
  }
}
.banner__col--right {
  width: 25.000008%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-width: 210px;
  margin: 0 0 0.7em 0;
}
@media only screen and (max-width:64em) {
  .banner__col--right {
    margin: 0 0 1.4em 0;
  }
}
@media only screen and (max-width:48em) {
  .banner__col--right {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 1em 0;
  }
}
@media only screen and (max-width:48em) {
  .banner__col--visability {
    display: none;
  }
}
.banner__col--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 2em;
}
@media only screen and (max-width:48em) {
  .banner__col--column {
    margin-right: 0;
  }
}
.banner__btn {
  margin: 0;
}
@media only screen and (max-width:30em) {
  .banner__btn {
    width: unset;
  }
}
/*
 * Settings for touch devices
 ==============================: */
.is-touch .nav__primary ul li.nav__item.has-dropdown a.dropdown-link {
  display: none;
}
.is-touch .nav__primary ul li.nav__item.has-dropdown span.dropdown-touch-device {
  display: inline-block;
}
.is-touch .youtube__play {
  display: none;
}
.is-touch .youtube__load {
  display: block;
}
/*
 * Fallbacks
 ==============================: */
.is-ie9 .select__box:after,
.is-ie9 .select__box:before {
  display: none;
}
