@charset "UTF-8";
/*
	We first load all helpers.
	Helpers are everything SASS that won't compile to code:
	Variables, Mixins.

	We load in this order:
	1. styles/helpers/**.scss
	2. 0a.settings and all *-settings.scss files (in free order)
	3. 0b.base and all *-base.scss files (in free order)

	Settings are for variables.
	Base files are for mixins.

	If you have settings or mixins that belong to a component, put them there.
*/
:root {
  --layer-header: 10 ;
}

/**
	Converts pixel value to em value

	- $size: Value with or without px unit, e.g. em(20) or em(20px)
	- $base-size: Pixel value. $base-font-size is default.
 */
@keyframes body-state_backdrop-in {
  to {
    opacity: 1;
  }
}
.debug {
  border: 1px solid red;
  height: 20vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  min-height: 300px;
  color: red;
  font-size: clamp(1.75rem, 3vw, 2.1rem);
}

/* stylelint-disable */
* {
  font: inherit;
  color: inherit;
  line-height: inherit;
  text-decoration: inherit;
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  color: #000;
  background: #fff;
}

figure {
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  margin-left: 0;
  margin-right: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

del,
ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  text-decoration: none;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

iframe {
  border: 0;
}

legend {
  color: inherit;
  *color: #000;
}

button,
input[type=button],
input[type=submit] {
  background: transparent;
  -webkit-appearance: button;
  cursor: pointer;
  border-radius: 0;
  border: 0;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* stylelint-enable */
.overlay-container {
  display: flex;
  overflow: hidden;
  height: 100%;
  width: 100%;
  max-width: 1920px;
  padding: 40px;
  margin: 0 auto;
  flex-direction: column;
}
@media (max-width: 740px) {
  .overlay-container {
    padding: 24px;
    padding-top: 30px;
  }
}

.overlay-content {
  flex: 1;
  overflow: auto;
  padding: 20px 25% 20px 25%;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .overlay-content {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media (max-width: 740px) {
  .overlay-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.overlay-content .richtext p {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #737273;
}
@media (max-width: 740px) {
  .overlay-content .richtext p {
    font-size: 16px;
  }
}
.overlay-content .richtext p strong {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #737273;
  font-weight: 700;
}
@media (max-width: 740px) {
  .overlay-content .richtext p strong {
    font-size: 16px;
  }
}

.overlay-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 1em;
}
@media (max-width: 1150px) {
  .overlay-title {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .overlay-title {
    font-size: 24px;
  }
}

.overlay-close {
  align-self: flex-end;
}
.overlay-close .Icon svg {
  transition: all ease-in-out 300ms;
}
.overlay-close:hover {
  background-color: transparent !important;
}
.overlay-close:hover .Icon svg {
  transform: rotate(90deg);
  color: #e30613;
}

html {
  width: 100%;
  height: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: break-word;
}
@media (min-width: 901px) {
  html.nav-flyout-open body::before {
    display: block !important;
    animation: body-state_backdrop-in 0.2s ease-in-out forwards;
  }
  html.nav-flyout-open body {
    height: 100vh;
    overflow: hidden;
  }
}

:root {
  --screenheight: 100vh;
  --screenheightLazy: 100vh;
  --navigationoffset: 0;
}

body {
  font-family: aktiv-grotesk, sans-serif;
  color: #000000;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}
@media (max-width: 740px) {
  body {
    font-size: 16px;
  }
}
body::before {
  display: block;
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 10;
}

.page-container {
  margin: 0 auto;
  flex: 1 0 auto;
  width: 100%;
  padding-top: var(--site-header--height);
}

/* stylelint-disable selector-no-vendor-prefix */
/* stylelint-enable */
body,
input,
select,
button,
textarea {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  width: 100%;
  display: block;
}

.logo {
  text-decoration: none;
}
.logo:before {
  content: "← ";
}

a:active {
  outline: none;
}

*:focus {
  outline: none;
}

abbr {
  border-bottom: 1px dotted gray;
}

p sup {
  position: relative;
  top: -0.75ex;
}

p sub {
  position: relative;
  top: 0.5ex;
}

button {
  cursor: pointer;
}

.scroll-anchor {
  display: block;
  width: 1px;
  height: 1px;
  background: transparent;
  position: absolute;
  margin-top: -150px;
  text-indent: -9999px;
}

.component-placeholder {
  display: block;
  padding: 20px;
  margin: 50px auto;
  max-width: 300px;
  border: 2px dashed #ddd;
  background-image: linear-gradient(45deg, #fdfbf3 25%, #fff 25%, #fff 50%, #fdfbf3 50%, #fdfbf3 75%, #fff 75%, #fff 100%);
  background-size: 56.57px 56.57px;
  border-radius: 5px;
}

.render-error {
  display: block;
  position: relative;
  padding: 20px;
  margin: 50px auto;
  max-width: 300px;
  border: 2px dashed rgb(165, 84, 84);
  background-image: linear-gradient(45deg, #fdf3f3 25%, #fff 25%, #fff 50%, #fdf3f3 50%, #fdf3f3 75%, #fff 75%, #fff 100%);
  background-size: 56.57px 56.57px;
  border-radius: 5px;
}
.render-error:hover:after {
  content: "⛑ Sorry!";
  position: absolute;
  transform: rotate(30deg);
  top: 10px;
  right: -30px;
  font-size: 20px;
  background: white;
  color: black;
  padding: 6px 12px;
  border-radius: border-radius-small;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

[data-pagetransition=hide] {
  transition: opacity 2s cubic-bezier(0.07, 0.69, 0.07, 1) !important;
  opacity: 0 !important;
}

#onetrust-banner-sdk {
  background-color: #fff;
  height: auto;
  outline: unset !important;
}
#onetrust-banner-sdk:focus {
  border: none;
}
#onetrust-banner-sdk .ot-sdk-container {
  max-width: 1600px !important;
  margin: 0 auto !important;
}
#onetrust-banner-sdk #onetrust-policy-text {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #737273 !important;
}
@media (max-width: 740px) {
  #onetrust-banner-sdk #onetrust-policy-text {
    font-size: 14px !important;
  }
}
#onetrust-banner-sdk #onetrust-button-group #onetrust-pc-btn-handler {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0;
  font-size: 16px;
  text-decoration: none;
  color: #005288;
}
#onetrust-banner-sdk #onetrust-button-group #onetrust-pc-btn-handler:hover {
  color: #179FD5;
}
#onetrust-banner-sdk #onetrust-button-group #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-button-group #onetrust-reject-all-handler {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #e30613;
  border-color: #e30613;
  padding: 12px 16px;
  border-radius: 40px;
}
#onetrust-banner-sdk #onetrust-button-group #onetrust-accept-btn-handler:hover, #onetrust-banner-sdk #onetrust-button-group #onetrust-reject-all-handler:hover {
  background-color: #ca0511;
}

#ot-sdk-btn.ot-sdk-show-settings {
  color: #005288 !important;
  border-color: #005288 !important;
}
#ot-sdk-btn.ot-sdk-show-settings:hover {
  color: #ffffff !important;
  background-color: #005288 !important;
}

/* stylelint-disable */
/* prettier-ignore */
#FlyingFocus {
  position: absolute;
  margin: 0;
  top: -100px;
  background: transparent;
  transition-property: left, top, width, height, opacity;
  transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
  visibility: hidden;
  pointer-events: none;
  display: none;
}

#FlyingFocus.FlyingFocus-visible {
  visibility: visible;
  z-index: 10000000;
  display: block;
}

#FlyingFocus:after {
  content: "";
  position: absolute;
  top: -19px;
  left: -19px;
  bottom: -19px;
  right: -19px;
  border-radius: 13px;
  box-shadow: 0 0 54px 0px rgba(0, 0, 0, 0.2), 0 0 2px 2px rgba(0, 10, 20, 0.1);
  border: 1px solid rgba(42, 113, 184, 0.75);
}

#FlyingFocus:before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  bottom: -18px;
  right: -18px;
  border-radius: 13px;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.9) inset;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.FocusOnly {
  position: absolute;
  clip: rect(0 0 0 0);
  -webkit-clip-path: polygon(0 0);
  clip-path: polygon(0 0);
}
.FocusOnly:focus, .FocusOnly:focus-within {
  position: static;
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
}

button.FocusOnly:focus {
  display: block;
  width: 100%;
  padding: 1em;
  text-align: center;
  background-color: #000000;
  color: #ffffff;
}

.visuallyhidden {
  position: absolute !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: polygon(0 0) !important;
  clip-path: polygon(0 0) !important;
}

.Icon {
  height: 16px;
  width: 16px;
  display: inline-block;
  position: relative;
  font-size: 100%;
}
.Icon > svg {
  height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  overflow: visible;
}
@supports (display: inline-flex) {
  .Icon > svg {
    position: relative;
    top: 0;
    transform: none;
  }
}

@supports (display: inline-flex) {
  .Icon,
  .Icon:not(.inline) {
    display: inline-flex;
    align-items: center;
  }
  .Icon > svg {
    position: relative;
    top: 0;
    transform: none;
  }
}
.Icon.large {
  height: 32px;
  width: 32px;
}

.Icon.verylarge {
  height: 48px;
  width: 48px;
}

.Icon.small {
  height: 12px;
  width: 12px;
}

.Icon > svg {
  display: block;
  width: 100%;
  height: 100%;
}

.Icon.black {
  color: #000000;
}

.Icon.white {
  color: #ffffff;
}

.Icon.blue {
  color: #005288;
}

.Icon.red {
  color: #e30613;
}

.Icon:not(.inline).circle {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  padding: 20px;
}

.Icon.inline {
  display: inline-block;
  min-height: 1ex;
  letter-spacing: -1ex;
  text-decoration: none;
  position: relative;
  vertical-align: middle;
  margin-top: -3px;
}
.Icon.inline.before {
  margin-right: 10px;
}
.Icon.inline.after {
  margin-left: 10px;
  margin-top: auto;
  margin-bottom: auto;
}
.Icon.inline:before {
  content: "";
}
html.cssreflections .Icon.inline:before {
  content: " ";
  letter-spacing: -1ex;
}

.Icon:not(.inline) {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  letter-spacing: -1ex;
  text-indent: -9999px;
  text-decoration: none;
  line-height: 1;
  border: none;
  outline: none;
}

@media screen and (-ms-high-contrast: active) {
  .Icon > svg {
    stroke: green;
  }
}
.ParagraphWrapper {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 160px;
}
@media (max-width: 740px) {
  .ParagraphWrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .ParagraphWrapper {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .ParagraphWrapper {
    margin-bottom: 60px;
  }
}
.ParagraphWrapper[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .ParagraphWrapper[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .ParagraphWrapper[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.ParagraphWrapper[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .ParagraphWrapper[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .ParagraphWrapper[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.ParagraphWrapper[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .ParagraphWrapper[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .ParagraphWrapper[data-component-gap=small] {
    margin-bottom: 20px;
  }
}

.Paragraph {
  grid-column: 3/span 8;
}
@media (max-width: 900px) {
  .Paragraph {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .Paragraph {
    grid-column: 1/span 4;
  }
}
.Paragraph.lead {
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1150px) {
  .Paragraph.lead {
    font-size: 28px;
  }
}
@media (max-width: 740px) {
  .Paragraph.lead {
    font-size: 22px;
  }
}
.Paragraph:not(.lead) .richtext p {
  color: #737273;
}

.richtext {
  color: #737273;
}
.richtext h1 {
  font-weight: 500;
  font-size: 54px;
  line-height: 1.1;
  color: #000000;
  font-weight: 700;
  margin-bottom: 1.25em;
}
@media (max-width: 1150px) {
  .richtext h1 {
    font-size: 40px;
  }
}
@media (max-width: 740px) {
  .richtext h1 {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media (max-width: 580px) {
  .richtext h1 {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
.richtext h2 {
  font-weight: 500;
  font-size: 54px;
  line-height: 1.1;
  color: #000000;
  margin-top: 1.5em;
  margin-bottom: 1.25em;
}
@media (max-width: 1150px) {
  .richtext h2 {
    font-size: 40px;
  }
}
@media (max-width: 740px) {
  .richtext h2 {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media (max-width: 580px) {
  .richtext h2 {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
.richtext h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  color: #000000;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
@media (max-width: 1150px) {
  .richtext h3 {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .richtext h3 {
    font-size: 24px;
  }
}
.richtext h4 {
  font-weight: 700;
  color: #000000;
  margin-bottom: 1em;
}
.richtext p + h2 {
  margin-top: 2.5em;
}
.richtext p {
  margin-bottom: 1em;
}
.richtext :not(li) > p:first-of-type {
  font-weight: 700;
  margin-bottom: 2.75em;
}
.richtext .blue {
  color: #005288;
}
.richtext small {
  font-size: 12px;
  line-height: 19px;
}
.richtext pre {
  padding: 20px;
  background: #ffffff;
  margin: 1em 0;
}
.richtext code {
  background: white;
}
.richtext pre code,
.richtext pre pre,
.richtext code pre {
  background: transparent;
}
.richtext figure {
  margin-top: 1em;
  margin-bottom: 1em;
}
.richtext figure img {
  width: 100%;
}
.richtext figure figcaption {
  margin-top: 1em;
  display: block;
}
.richtext ul > li:last-of-type {
  margin-bottom: 0;
}
.richtext table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.richtext table caption {
  font-weight: 700;
}
.richtext table tbody {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 740px) {
  .richtext table tbody {
    font-size: 14px;
  }
}
.richtext table th {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #000000;
}
@media (max-width: 740px) {
  .richtext table th {
    font-size: 14px;
  }
}
.richtext table caption,
.richtext table th,
.richtext table td {
  padding: 1rem 0;
  vertical-align: top;
}
.richtext table th:not(:last-child),
.richtext table td:not(:last-child) {
  padding-right: 1em;
}
.richtext table td {
  color: #767676;
}
.richtext table.top td {
  vertical-align: top;
}
.richtext table.center td {
  vertical-align: middle;
}
.richtext table.bottom td {
  vertical-align: bottom;
}
@media (max-width: 740px) {
  .richtext table thead {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
.richtext ul {
  margin-left: -30px;
  margin-left: -1.875rem;
  display: block;
  margin: 0 0 1em;
}
.richtext ul > li {
  padding-left: 30px;
  padding-left: 1.875rem;
  margin-bottom: 1.5ex;
  list-style-type: none;
  position: relative;
}
.richtext ul > li::before {
  left: 0;
  position: absolute;
  display: inline-block;
}
.richtext ul > li:before {
  top: 0.7em;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #666666;
}
.richtext ul > li:before {
  width: 6px;
  height: 6px;
}
.richtext ol {
  margin-left: -30px;
  margin-left: -1.875rem;
  display: block;
  counter-reset: ol--counter;
  /*html*/
  margin: 0 0 1em;
}
.richtext ol > li {
  padding-left: 30px;
  padding-left: 1.875rem;
  margin-bottom: 1.5ex;
  list-style-type: none;
  position: relative;
}
.richtext ol > li::before {
  left: 0;
  position: absolute;
  display: inline-block;
}
.richtext ol > li:before {
  left: 0;
  counter-increment: ol--counter;
  content: counter(ol--counter) ".";
}
.ie .richtext ol > li {
  list-style: decimal inside none;
}
.richtext ol p,
.richtext ul p {
  margin-bottom: 0;
}
.richtext ol p + p,
.richtext ul p + p {
  margin-top: 1em;
}
.richtext strong {
  font-weight: 700;
  color: #000000;
}
.richtext a:not([class]) {
  text-decoration: underline;
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  padding-bottom: 5px;
  border-radius: 0;
  border: none;
  overflow: hidden;
  z-index: 0;
  font-size: 16px;
  color: #005288;
  text-decoration: none;
  font-size: 18px;
  padding-bottom: 1px;
}
.richtext a:not([class]):hover {
  text-decoration: none;
}
@media (min-width: 901px) {
  .richtext a:not([class]):after {
    content: "";
    width: 100%;
    height: 2px;
    background: currentcolor;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    transform: translateX(-101%);
    transition: transform 300ms ease-in-out;
  }
  .richtext a:not([class]):hover:after {
    transform: translateX(0%);
  }
}
@media (max-width: 900px) {
  .richtext a:not([class]) {
    font-size: 14px;
    padding: 0;
    margin-bottom: 0;
  }
}
.richtext .Button.link.blue {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1em;
  font-size: 18px;
}
.richtext .ButtonList--item {
  margin-top: 2em;
}
.richtext .ButtonList--item + :not(.ButtonList--item) {
  margin-top: 2em;
}
.richtext .ButtonList--item + .ButtonList--item {
  margin-top: 0;
}
.richtext > *:first-child {
  margin-top: 0;
}

.contentful-richtext > *:not(:last-child) {
  margin-bottom: 20px;
}
.contentful-richtext > * + *:not([data-component^=link i]) {
  margin-top: 60px;
}
.contentful-richtext > * + *:not([data-component^=link i])[data-component=asaCallToActionButton] {
  margin-top: calc(15px + 2vw);
}
.contentful-richtext > [data-component=button] + [data-component=button] {
  margin-top: 0px;
}

.t-h0 {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.1;
}
@media (max-width: 1150px) {
  .t-h0 {
    font-size: 44px;
  }
}
@media (max-width: 740px) {
  .t-h0 {
    font-size: 36px;
    line-height: 1.2;
  }
}

.t-h1 {
  font-weight: 500;
  font-size: 54px;
  line-height: 1.1;
}
@media (max-width: 1150px) {
  .t-h1 {
    font-size: 40px;
  }
}
@media (max-width: 740px) {
  .t-h1 {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media (max-width: 580px) {
  .t-h1 {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}

.t-h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
}
@media (max-width: 1150px) {
  .t-h2 {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .t-h2 {
    font-size: 24px;
  }
}

.t-h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
}
@media (max-width: 740px) {
  .t-h3 {
    font-size: 18px;
  }
}

.t-h4 {
  font-size: 20px;
  line-height: 1.2;
}
@media (min-width: 741px) {
  .t-h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
  }
}

.t-h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}

.t-base {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 740px) {
  .t-base {
    font-size: 16px;
  }
}

.t-small {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 740px) {
  .t-small {
    font-size: 14px;
  }
}

.t-xsmall {
  font-weight: normal;
  font-size: 12px;
  line-height: 1.2;
}

.t-uppercase {
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.t-uppercase-s {
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.t-label {
  font-weight: 500;
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.c-black40 {
  color: #999999;
}

.t-light {
  color: #767676;
}

.t-black {
  color: #000000;
}

.t-normal {
  font-weight: normal;
}

.t-medium {
  font-weight: 500;
}

.t-bold {
  font-weight: bold;
}

.t-nowrap {
  white-space: nowrap;
}

.t-hyphenate {
  -webkit-hyphens: auto;
  hyphens: auto;
}

.l-block {
  display: block;
}

html.js .is-hidden-js {
  display: none !important;
}

html.no-js .is-visible-js {
  display: none !important;
}

@media (min-width: 1151px) {
  .is-hidden-desktop {
    display: none !important;
  }
  .is-visible-tablet {
    display: none !important;
  }
}
@media (max-width: 1150px) {
  .is-visible-desktop {
    display: none !important;
  }
  .is-hidden-tablet {
    display: none !important;
  }
}
@media (min-width: 901px) {
  .is-visible-tablet-portrait {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .is-hidden-tablet-portrait {
    display: none !important;
  }
}
@media (min-width: 741px) {
  .is-visible-mobile {
    display: none !important;
  }
}
@media (max-width: 740px) {
  .is-hidden-mobile {
    display: none !important;
  }
}
@media (min-width: 401px) {
  .is-visible-mobile-portrait {
    display: none !important;
  }
}
@media (max-width: 400px) {
  .is-hidden-mobile-portrait {
    display: none !important;
  }
}
@media only screen {
  .is-visible-print {
    display: none !important;
  }
}
@media print {
  .is-hidden-print {
    display: none !important;
  }
}
body:after {
  display: none;
  content: "desktop";
}
@media (max-width: 1150px) {
  body:after {
    content: "tablet";
  }
}
@media (max-width: 900px) {
  body:after {
    content: "tablet-portrait";
  }
}
@media (max-width: 740px) {
  body:after {
    content: "mobile";
  }
}
@media (max-width: 400px) {
  body:after {
    content: "mobile-portrait";
  }
}

.media-dispatcher-fallback {
  display: none;
  margin-bottom: 0px;
}
@media (max-width: 1150px) {
  .media-dispatcher-fallback {
    margin-bottom: 1px;
  }
}
@media (max-width: 900px) {
  .media-dispatcher-fallback {
    margin-bottom: 2px;
  }
}
@media (max-width: 740px) {
  .media-dispatcher-fallback {
    margin-bottom: 3px;
  }
}
@media (max-width: 400px) {
  .media-dispatcher-fallback {
    margin-bottom: 4px;
  }
}

body:before {
  display: none;
  content: "";
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  body:before {
    content: "retina";
  }
}

.Button:not(.link) {
  font-weight: 500;
  -webkit-hyphens: auto;
  hyphens: auto;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  padding: 20px 24px;
  border: 2px solid #e5e5e5;
  border-radius: 40px;
  color: #000000;
  box-shadow: 0 0 0 0px white;
  transition: box-shadow 200ms;
}
.Button:not(.link):disabled {
  color: #999999;
}
@media (max-width: 900px) {
  .Button:not(.link) {
    font-size: 12px;
    padding: 16px 20px;
    text-align: center;
  }
}
.Button:not(.link):not(:disabled) {
  transition: all 400ms;
}
.Button:not(.link):not(:disabled):hover {
  border-color: #000000;
}
.Button:not(.link) .Icon {
  height: 0.8em;
  width: 0.8em;
}

.Button.small {
  border-width: 1px;
  font-size: 10px;
  padding: 9px 14px;
}

.Button:not(.link).no-border {
  height: 40px;
  width: 40px;
  border: none;
  padding: 0;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.1;
  display: grid;
  place-items: center;
}
.Button:not(.link).no-border .Icon {
  height: 20px;
  width: 20px;
}
@media (max-width: 1150px) {
  .Button:not(.link).no-border .Icon {
    height: 14px;
    width: 14px;
  }
}

.Button.icon-only {
  height: 60px;
  width: 60px;
  font-size: 24px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.Button.icon-only:not(:disabled) {
  transition: all 400ms;
}
.Button.icon-only:not(:disabled):hover {
  border-color: #000000;
}
.Button.icon-only.small {
  height: 60px;
  width: 60px;
  padding-left: 5px;
  padding-right: 5px;
}
.Button.icon-only.large {
  height: 102px;
  width: 102px;
}
.Button.icon-only .Icon {
  margin-left: 0;
  margin-right: 0;
}

.Button.link {
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  padding-bottom: 5px;
  border-radius: 0;
  border: none;
  overflow: hidden;
  z-index: 0;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
}
@media (min-width: 901px) {
  .Button.link:after {
    content: "";
    width: 100%;
    height: 2px;
    background: currentcolor;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    transform: translateX(-101%);
    transition: transform 300ms ease-in-out;
  }
  .Button.link:hover:after {
    transform: translateX(0%);
  }
}
@media (max-width: 900px) {
  .Button.link {
    font-size: 14px;
    padding: 0;
    margin-bottom: 0;
  }
}
.Button.link.blue {
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  padding-bottom: 5px;
  border-radius: 0;
  border: none;
  overflow: hidden;
  z-index: 0;
  font-size: 16px;
  color: #005288;
  text-decoration: none;
}
@media (min-width: 901px) {
  .Button.link.blue:after {
    content: "";
    width: 100%;
    height: 2px;
    background: currentcolor;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    transform: translateX(-101%);
    transition: transform 300ms ease-in-out;
  }
  .Button.link.blue:hover:after {
    transform: translateX(0%);
  }
}
@media (max-width: 900px) {
  .Button.link.blue {
    font-size: 14px;
    padding: 0;
    margin-bottom: 0;
  }
}
.Button.link .Icon {
  height: 1em;
  width: 1em;
}

.Button.after {
  flex-direction: row-reverse;
}

.Button.red {
  border-color: #ffcbcf;
  color: #e30613;
}
.Button.red:not(:disabled) {
  transition: all 400ms;
}
.Button.red:not(:disabled):hover {
  border-color: #e30613;
}

.Button.fill {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.Button.fill:not(:disabled) {
  transition: all 400ms;
}
.Button.fill:not(:disabled):hover {
  border-color: black;
}
.Button.fill:not(:disabled):hover {
  background-color: black;
}
.Button.fill:disabled {
  opacity: 0.5;
}
.Button.fill.red {
  background: #e30613;
  color: #ffffff;
  border-color: #e30613;
}
.Button.fill.red:not(:disabled) {
  transition: all 400ms;
}
.Button.fill.red:not(:disabled):hover {
  border-color: rgb(202.1566523605, 5.3433476395, 16.9206008584);
}
.Button.fill.red:not(:disabled):hover {
  background-color: rgb(202.1566523605, 5.3433476395, 16.9206008584);
}
.Button.fill.red:disabled {
  opacity: 0.5;
}
.Button.fill.blue {
  background: #2FB4E9;
  color: #ffffff;
  border-color: #2FB4E9;
}
.Button.fill.blue:not(:disabled) {
  transition: all 400ms;
}
.Button.fill.blue:not(:disabled):hover {
  border-color: rgb(24.3434782609, 171.5108695652, 230.1565217391);
}
.Button.fill.blue:not(:disabled):hover {
  background-color: rgb(24.3434782609, 171.5108695652, 230.1565217391);
}
.Button.fill.blue:disabled {
  opacity: 0.5;
}

.Button.offwhite {
  background-color: #f8f8f8;
}

.ButtonNav {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-gap: 17px;
}

.Flyout {
  position: relative;
}

.Flyout--body {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  min-width: 140px;
  padding: 9px 14px;
}
.Flyout--body.is-collapsed {
  display: none;
}

.Picture {
  position: relative;
  overflow: hidden;
  background-color: #f2f2f2;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
}
.Picture > [data-lazy],
.Picture > img,
.Picture > object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.Picture.full > [data-lazy],
.Picture.full > img,
.Picture.full > object {
  position: static;
  height: auto;
}

.Picture.contain {
  padding-bottom: 0;
}
.Picture.contain > * {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain";
}

.SiteLogo {
  display: inline-block;
  width: 68px;
}
@media (min-width: 1151px) {
  .SiteLogo {
    width: 100px;
  }
}
.SiteLogo svg {
  width: 100%;
  height: 100%;
}
.SiteLogo svg path {
  fill: #179FD5;
}
[data-variant=professional] .SiteLogo svg path {
  fill: #fff;
}

.ExpoHeader .SiteLogo {
  height: 63px;
  width: 63px;
}

.Table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.Table table caption {
  font-weight: 700;
}
.Table table tbody {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 740px) {
  .Table table tbody {
    font-size: 14px;
  }
}
.Table table th {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #000000;
}
@media (max-width: 740px) {
  .Table table th {
    font-size: 14px;
  }
}
.Table table caption,
.Table table th,
.Table table td {
  padding: 1rem 0;
  vertical-align: top;
}
.Table table th:not(:last-child),
.Table table td:not(:last-child) {
  padding-right: 1em;
}
.Table table td {
  color: #767676;
}
.Table table.top td {
  vertical-align: top;
}
.Table table.center td {
  vertical-align: middle;
}
.Table table.bottom td {
  vertical-align: bottom;
}
@media (max-width: 740px) {
  .Table table thead {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
@media (max-width: 740px) {
  .Table.mobile-stacked table thead {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: polygon(0 0) !important;
    clip-path: polygon(0 0) !important;
  }
  .Table.mobile-stacked table tr {
    display: block;
  }
  .Table.mobile-stacked table tr:not(:last-child) {
    margin-bottom: 1rem;
    border-bottom: 2px solid #000000;
  }
  .Table.mobile-stacked table td {
    display: block;
  }
  .Table.mobile-stacked table td:before {
    content: attr(data-label);
    display: block;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.25rem;
  }
}
@media (max-width: 740px) and (max-width: 740px) {
  .Table.mobile-stacked table td:before {
    font-size: 14px;
  }
}
@media (max-width: 740px) {
  .Table.mobile-stacked table tr:not(:last-child) td:last-child {
    padding-bottom: 2rem;
  }
}

.Table--vertical table th,
.Table--vertical table td {
  padding: 0.5rem 0;
}
.Table--vertical.full table td {
  text-align: right;
}

.Table.full tr th:last-child,
.Table.full tr td:last-child {
  text-align: right;
}

.Video {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 160px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 740px) {
  .Video {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .Video {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .Video {
    margin-bottom: 60px;
  }
}
.Video[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .Video[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .Video[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.Video[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .Video[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .Video[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.Video[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .Video[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .Video[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
@media (max-width: 900px) {
  .Video {
    width: 100%;
  }
}
.AccordionItem .Video {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: 0;
}
@media (max-width: 740px) {
  .AccordionItem .Video {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
  }
}

.Video--wrapper {
  grid-column: 3/span 8;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .Video--wrapper {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .Video--wrapper {
    grid-column: 1/span 4;
  }
}
@media (max-width: 1150px) {
  .Video--wrapper {
    grid-column: 2/span 10;
  }
}
@media (max-width: 1150px) and (max-width: 900px) {
  .Video--wrapper {
    grid-column: 1/span 12;
  }
}
@media (max-width: 1150px) and (max-width: 740px) {
  .Video--wrapper {
    grid-column: 1/span 4;
  }
}
.Video--wrapper:not(.has-consent) {
  border: 1px solid #bfbfbf;
}
.AccordionItem .Video--wrapper {
  grid-column: 1/span 12;
}
@media (max-width: 900px) {
  .AccordionItem .Video--wrapper {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .AccordionItem .Video--wrapper {
    grid-column: 1/span 4;
  }
}

.Video--consentWrapper {
  padding: 40px;
}
@media (max-width: 1150px) {
  .Video--consentWrapper {
    padding: 30px;
  }
}
@media (max-width: 900px) {
  .Video--consentWrapper {
    padding: 20px;
  }
}

.Video--wrapper iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.Video--consentWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.Video--consentActions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.FileUpload {
  display: block;
  flex-flow: column nowrap;
  justify-content: space-between;
  margin-top: 0.5em;
}

.FileUpload--dropArea {
  border: 2px dashed #2FB4E9;
  border-radius: 12px;
  width: 100%;
  height: 300px;
}
.FileUpload--dropArea.active {
  background-color: #e1e1e1;
}

.FileUpload--label,
.FileUpload--description,
.FileUpload--fileName {
  font-weight: 500;
  font-size: 16px;
}

.FileUpload--label {
  display: block;
  margin-bottom: 7px;
}
[data-required] .FileUpload--label::after {
  content: "*";
}

.FileUpload--fileSizeError {
  display: none;
}
.FileUpload--fileSizeError.visible {
  display: block;
  color: #e30613;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.FileUpload--fileSelector {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}
.has-file .FileUpload--fileSelector {
  display: none;
}

.FileUpload--attachment {
  display: none;
}
.has-file .FileUpload--attachment {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.FileUpload--error {
  display: none;
}
.has-errors .FileUpload--error {
  display: block;
  padding: 8px;
  margin-top: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  background-color: #e30613;
  border-radius: 3px;
}

.FileUpload--nativeInput {
  display: none;
}

.Form {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
}
@media (max-width: 740px) {
  .Form {
    grid-template-columns: repeat(4, 1fr);
  }
}

.Form--inner {
  grid-column: 3/span 8;
}
@media (max-width: 900px) {
  .Form--inner {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .Form--inner {
    grid-column: 1/span 4;
  }
}
.wide .Form--inner {
  grid-column: 2/span 10;
}
@media (max-width: 900px) {
  .wide .Form--inner {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .wide .Form--inner {
    grid-column: 1/span 4;
  }
}

.FormElement {
  margin-bottom: 1em;
}

.Form--title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 49px;
}
@media (max-width: 1150px) {
  .Form--title {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .Form--title {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .Form--title {
    margin-bottom: 32px;
  }
}

.Form--subTitle {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}
@media (min-width: 741px) {
  .Form--subTitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
  }
}

.Form--steps {
  display: flex;
  justify-content: space-between;
  grid-row: 1;
  grid-column: 1/span 12;
  margin-bottom: 80px;
  counter-reset: step-counter;
  overflow: hidden;
}
@media (min-width: 1151px) {
  .Form--steps {
    grid-column: 2/span 10;
  }
}
@media (max-width: 740px) {
  .Form--steps {
    margin-bottom: 40px;
  }
}

.form-body {
  grid-row: 2;
  grid-column: 1/span 12;
}
@media (min-width: 1151px) {
  .form-body {
    grid-column: 4/span 6;
  }
}

.Form--step {
  font-weight: 500;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 64px 24px;
  align-items: center;
  row-gap: 16px;
  counter-increment: step-counter;
  white-space: nowrap;
  color: #000000;
  flex-grow: 1;
  font-size: 12px;
}
.Form--step:last-of-type {
  flex-grow: 0;
}
.Form--step:last-of-type::before {
  justify-self: end;
}
.Form--step:first-of-type::before {
  justify-self: start;
}
@media (max-width: 740px) {
  .Form--step {
    grid-template-rows: 32px 14px;
    row-gap: 8px;
  }
}

.Form--step::before {
  height: 64px;
  width: 64px;
  content: counter(step-counter);
  justify-self: center;
  display: grid;
  place-items: center;
  border-radius: 50%;
  grid-row: 1;
  grid-column: 1/span 1;
  color: #000000;
  border: 2px solid #e5e5e5;
  background: #ffffff;
  z-index: 2;
  font-size: 24px;
}
@media (max-width: 740px) {
  .Form--step::before {
    height: 32px;
    width: 32px;
    font-size: 14px;
  }
}

.Form--step::after {
  position: relative;
  content: "";
  grid-area: line;
  height: 2px;
  width: 110%;
  background: #e5e5e5;
  grid-row: 1;
  grid-column: 1/span 2;
  z-index: 1;
}

.Form--stepLabel {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  grid-row: 2;
  justify-self: center;
}

.Form--step[data-step-active=true],
.Form--step[data-step-complete=true] {
  color: #000000;
}
.Form--step[data-step-active=true]:before,
.Form--step[data-step-complete=true]:before {
  background: #179FD5;
  color: #ffffff;
  border-color: #179FD5;
}

.Form--step[data-step-complete=true]::after {
  background-color: #179FD5;
  z-index: 1;
}

@media (max-width: 900px) {
  .Form--step[data-step-active=false] .Form--stepLabel {
    width: 10ch;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
@media (max-width: 740px) {
  .Form--step[data-step-active=false] .Form--stepLabel {
    width: 0ch;
  }
}

.Form--checklist {
  margin-left: -30px;
  margin-left: -1.875rem;
  display: block;
  counter-reset: ol--counter;
  /*html*/
  margin-bottom: 40px;
}
.Form--checklist > li {
  padding-left: 30px;
  padding-left: 1.875rem;
  margin-bottom: 1.5ex;
  list-style-type: none;
  position: relative;
}
.Form--checklist > li::before {
  left: 0;
  position: absolute;
  display: inline-block;
}
.Form--checklist > li:before {
  left: 0;
  counter-increment: ol--counter;
  content: counter(ol--counter) ".";
}
.ie .Form--checklist > li {
  list-style: decimal inside none;
}

.FormError {
  margin: 8px 0;
  color: #e30613;
  font-size: 12px;
}
.FormError > .Icon {
  margin-right: 1ex;
}

.FormLabel {
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 7px;
}
.FormLabel > a {
  text-decoration: underline;
}

.error .FormLabel {
  color: #e30613;
}

[data-required] .FormLabel::after {
  content: "*";
}

.FormKit--form fieldset {
  margin-bottom: 40px;
}
.FormKit--form legend {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 1em;
}
@media (max-width: 740px) {
  .FormKit--form legend {
    font-size: 18px;
  }
}

.FormKit--section {
  margin-bottom: 80px;
}
@media (max-width: 740px) {
  .FormKit--section {
    margin-bottom: 40px;
  }
}

.FormKit--element {
  margin-bottom: 1em;
}

.FormKit--title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #000000;
}
@media (max-width: 1150px) {
  .FormKit--title {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .FormKit--title {
    font-size: 24px;
  }
}

.FormKit--richtext {
  margin-bottom: 40px;
}

.FormKit--text {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #737273;
}
@media (max-width: 740px) {
  .FormKit--text {
    font-size: 16px;
  }
}

.FormKit--content {
  margin-bottom: 40px;
}

label.FormKit--label, legend.FormKit--label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 7px;
}
label.FormKit--label > a, legend.FormKit--label > a {
  text-decoration: underline;
}
[data-invalid=true] label.FormKit--label, [data-invalid=true] legend.FormKit--label {
  color: #e30613;
}

.FormKit--wrapper-flex {
  display: grid;
  grid-template-columns: 2fr minmax(auto, 95px);
  grid-template-rows: 1fr;
  align-items: center;
  gap: 40px;
}
.FormKit--wrapper-flex .FormKit--label {
  margin-bottom: 0;
}
.FormKit--wrapper-flex.reverse .FormKit--label {
  grid-column: 2;
  grid-row: 1;
}
.FormKit--wrapper-flex.reverse .FormKit--inner {
  grid-column: 1;
  grid-row: 1;
}

.FormKit--input {
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border-radius: 4px;
  background-color: #f2f2f2;
  border: 2px solid #f2f2f2;
  padding: 12px 20px;
  width: 100%;
  box-shadow: 0 0 0 0px white;
  transition: box-shadow 200ms;
  margin-top: 0.5em;
  height: auto;
}
.FormKit--input::-webkit-input-placeholder {
  font-weight: normal;
  color: #737273;
}
.FormKit--input::-moz-placeholder {
  font-weight: normal;
  color: #737273;
}
.FormKit--input::placeholder {
  font-weight: normal;
  color: #737273;
}
.FormKit--input:hover {
  border-color: #bfbfbf;
}
.FormKit--input:focus {
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  box-shadow: unset !important;
}
.FormKit--input.error {
  border: 2px solid #e30613 !important;
  box-shadow: none;
}
.FormKit--input.error:focus {
  color: #000000 !important;
  background-color: #ffffff !important;
}
[data-invalid=true] .FormKit--input {
  border: 2px solid #e30613 !important;
  box-shadow: none;
}
.FormKit--input[type=number]::-webkit-inner-spin-button, .FormKit--input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

.FormKitOption--wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
}

.FormKitOption--legend {
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 7px;
}
.FormKitOption--legend > a {
  text-decoration: underline;
}

.FormKitOption--input {
  height: 18px;
  width: 18px;
  position: relative;
}
.FormKitOption--input:before, .FormKitOption--input:after {
  height: 24px;
  width: 24px;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  display: inline-block;
  margin-right: 10px;
  margin-top: -2px;
  background: #fcfcfc;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
}
.FormKitOption--input[type=checkbox]::after {
  content: " ";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSIjMDA1Mjg4Ii8+CjxwYXRoIGQ9Ik00IDEyLjg1NzFMOC44IDE4TDIwIDYiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
}
.FormKitOption--input[type=radio]::before, .FormKitOption--input[type=radio]::after {
  border-radius: 50%;
}
.FormKitOption--input[type=radio]::after {
  height: 16px;
  width: 16px;
  border: none;
  background: #005288;
  top: 4px;
  left: 3px;
}
.FormKitOption--input:not(:checked):after {
  visibility: hidden;
}

.FormKit--help {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #737273;
  font-size: 12px;
  line-height: 19px;
  margin-top: 0.5em;
}
@media (max-width: 740px) {
  .FormKit--help {
    font-size: 16px;
  }
}

.FormKit--selectRows {
  margin-bottom: 80px;
}
@media (max-width: 740px) {
  .FormKit--selectRows {
    margin-bottom: 40px;
  }
}

.FormKit--selectRow {
  padding: 16px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e5e5e5;
}
.FormKit--selectRow:first-child {
  border-top: 1px solid #e5e5e5;
}

.FormKitSelect--input {
  padding-right: 30px;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuNSA2LjVMOCAxMUwxMi41IDYuNSIgc3Ryb2tlPSIjMjIyMjIyIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.FormKit--stepnav {
  display: flex;
  justify-content: space-between;
}

.Formkit--message {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 0.5em;
  color: #e30613;
}
@media (max-width: 740px) {
  .Formkit--message {
    font-size: 14px;
  }
}

.FormKit--multilineOption {
  padding: 12px 0;
}
.FormKit--multilineOption .FormKit--label {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
}
@media (max-width: 740px) {
  .FormKit--multilineOption .FormKit--label {
    font-size: 18px;
  }
}
.FormKit--multilineOption .FormKit--help {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #737273;
  padding-left: 36px;
}
@media (max-width: 740px) {
  .FormKit--multilineOption .FormKit--help {
    font-size: 16px;
  }
}

.FormKitDatepicker--inner {
  position: relative;
}

.FormKitDatepicker--button {
  position: absolute;
  height: 56px;
  width: 70px;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.FormKitDatepicker--overlay {
  margin: 2px 0 0 2px !important;
}

.FormKitDatepicker--panelWrapper {
  position: absolute;
  right: 0;
  width: 100%;
  max-width: 400px;
  z-index: 10;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.06), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
}
@media (max-width: 740px) {
  .FormKitDatepicker--panelWrapper {
    padding: 12px;
  }
}
.overlay-bottom .FormKitDatepicker--panelWrapper {
  bottom: 57px;
}

.FormKitDatepicker--panelHeader {
  display: flex;
  justify-content: space-around;
  margin-bottom: 12px;
}

.FormKitDatepicker--calender {
  width: 100%;
}

.FormKitDatepicker--week,
.FormKitDatepicker--weekDays {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
  text-align: center;
}
@media (max-width: 740px) {
  .FormKitDatepicker--week,
  .FormKitDatepicker--weekDays {
    font-size: 14px;
  }
}

.FormKitDatepicker--weekDays {
  margin-bottom: 12px;
}

.FormKitDatepicker--weekDay {
  text-align: center;
}

.FormKitDatepicker--day {
  height: 40px;
  width: 40px;
  font-weight: 500;
  background: #d6f0fa;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}
@media (hover: hover) {
  .FormKitDatepicker--day:hover {
    background: #179FD5;
  }
  .FormKitDatepicker--day:focus {
    background: #179FD5;
  }
}
[data-disabled=true] .FormKitDatepicker--day {
  background: #F6FBFE;
}
@media (hover: hover) {
  [data-disabled=true] .FormKitDatepicker--day:hover {
    background: #F6FBFE;
  }
  [data-disabled=true] .FormKitDatepicker--day:focus {
    background: #F6FBFE;
  }
}
.FormKitDatepicker--dayCell[aria-selected=true] .FormKitDatepicker--day {
  background: #005288;
  color: #ffffff;
}
@media (max-width: 740px) {
  .FormKitDatepicker--day {
    height: 32px;
    width: 32px;
  }
}

.FormKitDatepicker--dayCell {
  display: flex;
  justify-content: center;
}
.FormKitDatepicker--dayCell[data-disabled=true] {
  opacity: 0.5;
}

.FormKitDatepicker--prev,
.FormKitDatepicker--next {
  display: flex;
}

.FormKitDatepicker--next {
  justify-self: end;
}

.FormKitDatepicker--yearsHeader {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.FormKitDatepicker--daysHeader {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
}
.FormKitDatepicker--daysHeader button {
  display: flex;
  padding: 6px;
  background: #f2f2f2;
  line-height: 1;
  border-radius: 6px;
}
@media (hover: hover) {
  .FormKitDatepicker--daysHeader button:hover {
    background: #e5e5e5;
  }
  .FormKitDatepicker--daysHeader button:focus {
    background: #e5e5e5;
  }
}

.FormKitDatepicker--years,
.FormKitDatepicker--months {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 8px;
}

.FormKitDatepicker--year,
.FormKitDatepicker--month {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d6f0fa;
  border-radius: 12px;
  cursor: pointer;
}
@media (hover: hover) {
  .FormKitDatepicker--year:hover,
  .FormKitDatepicker--month:hover {
    background: #179FD5;
  }
  .FormKitDatepicker--year:focus,
  .FormKitDatepicker--month:focus {
    background: #179FD5;
  }
}
.FormKitDatepicker--year[aria-selected=true],
.FormKitDatepicker--month[aria-selected=true] {
  background: #005288;
  color: #ffffff;
}

.FormError {
  font-weight: 500;
  font-size: 16px;
  color: #e30613;
  margin: 8px 0;
}
.FormError > .Icon {
  margin-right: 1ex;
}

.Input {
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border-radius: 4px;
  background-color: #f2f2f2;
  border: 2px solid #f2f2f2;
  padding: 12px 20px;
  width: 100%;
  box-shadow: 0 0 0 0px white;
  transition: box-shadow 200ms;
  margin-top: 0.5em;
  height: auto;
}
.Input::-webkit-input-placeholder {
  font-weight: normal;
  color: #737273;
}
.Input::-moz-placeholder {
  font-weight: normal;
  color: #737273;
}
.Input::placeholder {
  font-weight: normal;
  color: #737273;
}
.Input:hover {
  border-color: #bfbfbf;
}
.Input:focus {
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  box-shadow: unset !important;
}
.Input.error {
  border: 2px solid #e30613 !important;
  box-shadow: none;
}
.Input.error:focus {
  color: #000000 !important;
  background-color: #ffffff !important;
}

.InputSet--body .FormLabel {
  position: absolute !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: polygon(0 0) !important;
  clip-path: polygon(0 0) !important;
}

.MSDynamicsForm {
  margin-bottom: 160px;
  position: relative;
}
@media (max-width: 1150px) {
  .MSDynamicsForm {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .MSDynamicsForm {
    margin-bottom: 60px;
  }
}
.MSDynamicsForm[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .MSDynamicsForm[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .MSDynamicsForm[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.MSDynamicsForm[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .MSDynamicsForm[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .MSDynamicsForm[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.MSDynamicsForm[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .MSDynamicsForm[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .MSDynamicsForm[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
.MSDynamicsForm *:not(.anything) {
  font: inherit;
}
.MSDynamicsForm .Loader {
  height: 200px;
}
.MSDynamicsForm:not(.loaded) {
  min-height: 200px;
}
.MSDynamicsForm.loaded .Loader {
  display: none;
}
.MSDynamicsForm [data-hide=hide] {
  display: none;
}
.MSDynamicsForm [data-editorblocktype] {
  margin-bottom: 1em;
  gap: 0 !important;
  padding-left: 0 !important;
}
.MSDynamicsForm [data-editorblocktype]:not(.multiOptionSetFormFieldBlock):not(.optionSetFormFieldBlock) label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 7px;
  margin-bottom: 0;
}
.MSDynamicsForm [data-editorblocktype]:not(.multiOptionSetFormFieldBlock):not(.optionSetFormFieldBlock) label > a {
  text-decoration: underline;
}
.MSDynamicsForm [data-editorblocktype]:not(.multiOptionSetFormFieldBlock):not(.optionSetFormFieldBlock) label.has-error {
  color: #e30613;
}
.MSDynamicsForm input[type=checkbox] + label,
.MSDynamicsForm input[type=radio] + label {
  font-size: 14px;
}
.MSDynamicsForm [data-editorblocktype] textarea,
.MSDynamicsForm [data-editorblocktype] select,
.MSDynamicsForm [data-editorblocktype] input[type=text],
.MSDynamicsForm [data-editorblocktype] input[type=email],
.MSDynamicsForm [data-editorblocktype] input[type=tel],
.MSDynamicsForm [data-editorblocktype] input[type=number],
.MSDynamicsForm [data-editorblocktype] input[type=date],
.MSDynamicsForm [data-editorblocktype] input[type=time],
.MSDynamicsForm [data-editorblocktype] input[type=password] {
  font: inherit;
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border-radius: 4px;
  background-color: #f2f2f2;
  border: 2px solid #f2f2f2;
  padding: 12px 20px;
  width: 100%;
  box-shadow: 0 0 0 0px white;
  transition: box-shadow 200ms;
  margin-top: 0.5em;
  height: auto;
}
.MSDynamicsForm [data-editorblocktype] textarea::-webkit-input-placeholder, .MSDynamicsForm [data-editorblocktype] select::-webkit-input-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=text]::-webkit-input-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=email]::-webkit-input-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=tel]::-webkit-input-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=number]::-webkit-input-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=date]::-webkit-input-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=time]::-webkit-input-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=password]::-webkit-input-placeholder {
  font-weight: normal;
  color: #737273;
}
.MSDynamicsForm [data-editorblocktype] textarea::-moz-placeholder, .MSDynamicsForm [data-editorblocktype] select::-moz-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=text]::-moz-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=email]::-moz-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=tel]::-moz-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=number]::-moz-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=date]::-moz-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=time]::-moz-placeholder, .MSDynamicsForm [data-editorblocktype] input[type=password]::-moz-placeholder {
  font-weight: normal;
  color: #737273;
}
.MSDynamicsForm [data-editorblocktype] textarea::placeholder,
.MSDynamicsForm [data-editorblocktype] select::placeholder,
.MSDynamicsForm [data-editorblocktype] input[type=text]::placeholder,
.MSDynamicsForm [data-editorblocktype] input[type=email]::placeholder,
.MSDynamicsForm [data-editorblocktype] input[type=tel]::placeholder,
.MSDynamicsForm [data-editorblocktype] input[type=number]::placeholder,
.MSDynamicsForm [data-editorblocktype] input[type=date]::placeholder,
.MSDynamicsForm [data-editorblocktype] input[type=time]::placeholder,
.MSDynamicsForm [data-editorblocktype] input[type=password]::placeholder {
  font-weight: normal;
  color: #737273;
}
.MSDynamicsForm [data-editorblocktype] textarea:hover,
.MSDynamicsForm [data-editorblocktype] select:hover,
.MSDynamicsForm [data-editorblocktype] input[type=text]:hover,
.MSDynamicsForm [data-editorblocktype] input[type=email]:hover,
.MSDynamicsForm [data-editorblocktype] input[type=tel]:hover,
.MSDynamicsForm [data-editorblocktype] input[type=number]:hover,
.MSDynamicsForm [data-editorblocktype] input[type=date]:hover,
.MSDynamicsForm [data-editorblocktype] input[type=time]:hover,
.MSDynamicsForm [data-editorblocktype] input[type=password]:hover {
  border-color: #bfbfbf;
}
.MSDynamicsForm [data-editorblocktype] textarea:focus,
.MSDynamicsForm [data-editorblocktype] select:focus,
.MSDynamicsForm [data-editorblocktype] input[type=text]:focus,
.MSDynamicsForm [data-editorblocktype] input[type=email]:focus,
.MSDynamicsForm [data-editorblocktype] input[type=tel]:focus,
.MSDynamicsForm [data-editorblocktype] input[type=number]:focus,
.MSDynamicsForm [data-editorblocktype] input[type=date]:focus,
.MSDynamicsForm [data-editorblocktype] input[type=time]:focus,
.MSDynamicsForm [data-editorblocktype] input[type=password]:focus {
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  box-shadow: unset !important;
}
.MSDynamicsForm [data-editorblocktype] textarea.error,
.MSDynamicsForm [data-editorblocktype] select.error,
.MSDynamicsForm [data-editorblocktype] input[type=text].error,
.MSDynamicsForm [data-editorblocktype] input[type=email].error,
.MSDynamicsForm [data-editorblocktype] input[type=tel].error,
.MSDynamicsForm [data-editorblocktype] input[type=number].error,
.MSDynamicsForm [data-editorblocktype] input[type=date].error,
.MSDynamicsForm [data-editorblocktype] input[type=time].error,
.MSDynamicsForm [data-editorblocktype] input[type=password].error {
  border: 2px solid #e30613 !important;
  box-shadow: none;
}
.MSDynamicsForm [data-editorblocktype] textarea.error:focus,
.MSDynamicsForm [data-editorblocktype] select.error:focus,
.MSDynamicsForm [data-editorblocktype] input[type=text].error:focus,
.MSDynamicsForm [data-editorblocktype] input[type=email].error:focus,
.MSDynamicsForm [data-editorblocktype] input[type=tel].error:focus,
.MSDynamicsForm [data-editorblocktype] input[type=number].error:focus,
.MSDynamicsForm [data-editorblocktype] input[type=date].error:focus,
.MSDynamicsForm [data-editorblocktype] input[type=time].error:focus,
.MSDynamicsForm [data-editorblocktype] input[type=password].error:focus {
  color: #000000 !important;
  background-color: #ffffff !important;
}
.MSDynamicsForm [data-editorblocktype] textarea.formRequiredError,
.MSDynamicsForm [data-editorblocktype] select.formRequiredError,
.MSDynamicsForm [data-editorblocktype] input[type=text].formRequiredError,
.MSDynamicsForm [data-editorblocktype] input[type=email].formRequiredError,
.MSDynamicsForm [data-editorblocktype] input[type=tel].formRequiredError,
.MSDynamicsForm [data-editorblocktype] input[type=number].formRequiredError,
.MSDynamicsForm [data-editorblocktype] input[type=date].formRequiredError,
.MSDynamicsForm [data-editorblocktype] input[type=time].formRequiredError,
.MSDynamicsForm [data-editorblocktype] input[type=password].formRequiredError {
  border: 2px solid #e30613 !important;
  box-shadow: none;
}
.MSDynamicsForm [data-editorblocktype] textarea.formRequiredError:focus,
.MSDynamicsForm [data-editorblocktype] select.formRequiredError:focus,
.MSDynamicsForm [data-editorblocktype] input[type=text].formRequiredError:focus,
.MSDynamicsForm [data-editorblocktype] input[type=email].formRequiredError:focus,
.MSDynamicsForm [data-editorblocktype] input[type=tel].formRequiredError:focus,
.MSDynamicsForm [data-editorblocktype] input[type=number].formRequiredError:focus,
.MSDynamicsForm [data-editorblocktype] input[type=date].formRequiredError:focus,
.MSDynamicsForm [data-editorblocktype] input[type=time].formRequiredError:focus,
.MSDynamicsForm [data-editorblocktype] input[type=password].formRequiredError:focus {
  color: #000000 !important;
  background-color: #ffffff !important;
}
.MSDynamicsForm [data-editorblocktype] select {
  padding-right: 30px;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuNSA2LjVMOCAxMUwxMi41IDYuNSIgc3Ryb2tlPSIjMjIyMjIyIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.MSDynamicsForm div[data-form-block-id] .onFormSubmittedFeedback .onFormSubmittedFeedbackMessage {
  font: inherit;
}
.MSDynamicsForm div[data-form-block-id] .onFormSubmittedFeedback .onFormSubmittedFeedbackButton {
  font: inherit;
  padding: 10px 20px;
  border-radius: 50px;
}
.MSDynamicsForm div[data-editorblocktype=Captcha] {
  padding: 0;
}
.MSDynamicsForm button[type=submit],
.MSDynamicsForm .lp-form-button {
  font-weight: 500;
  -webkit-hyphens: auto;
  hyphens: auto;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  padding: 20px 24px;
  border: 2px solid #e5e5e5;
  border-radius: 40px;
  color: #000000;
  box-shadow: 0 0 0 0px white;
  transition: box-shadow 200ms;
  background: #e30613;
  color: #ffffff;
  border-color: #e30613;
}
.MSDynamicsForm button[type=submit]:disabled,
.MSDynamicsForm .lp-form-button:disabled {
  color: #999999;
}
@media (max-width: 900px) {
  .MSDynamicsForm button[type=submit],
  .MSDynamicsForm .lp-form-button {
    font-size: 12px;
    padding: 16px 20px;
    text-align: center;
  }
}
.MSDynamicsForm button[type=submit]:not(:disabled),
.MSDynamicsForm .lp-form-button:not(:disabled) {
  transition: all 400ms;
}
.MSDynamicsForm button[type=submit]:not(:disabled):hover,
.MSDynamicsForm .lp-form-button:not(:disabled):hover {
  border-color: #e30613;
}
.MSDynamicsForm button[type=submit]:hover,
.MSDynamicsForm .lp-form-button:hover {
  background-color: rgb(202.1566523605, 5.3433476395, 16.9206008584);
}
.MSDynamicsForm input,
.MSDynamicsForm select {
  font: inherit;
}
.MSDynamicsForm .textFormFieldBlock,
.MSDynamicsForm .dateTimeFormFieldBlock,
.MSDynamicsForm .twoOptionFormFieldBlock,
.MSDynamicsForm .optionSetFormFieldBlock,
.MSDynamicsForm .multiOptionSetFormFieldBlock,
.MSDynamicsForm .lookupFormFieldBlock {
  padding: 0 !important;
}
.MSDynamicsForm [data-layout=true] {
  max-width: none;
}
.MSDynamicsForm [data-container=true] {
  vertical-align: top;
}
.MSDynamicsForm div[data-editorblocktype=SubmitButton] {
  padding-left: 0;
  padding-right: 0;
}
.MSDynamicsForm table {
  width: 100%;
}
@media (min-width: 769px) {
  .MSDynamicsForm .columns-equal-class .columnContainer {
    width: 50%;
  }
  .MSDynamicsForm .columns-equal-class .columnContainer:not(:last-child) {
    padding-right: 1em;
  }
}

.NetResultsForm {
  margin-bottom: 160px;
  position: relative;
}
@media (max-width: 1150px) {
  .NetResultsForm {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .NetResultsForm {
    margin-bottom: 60px;
  }
}
.NetResultsForm .Loader {
  height: 200px;
}
.NetResultsForm:not(.loaded) {
  min-height: 200px;
}
.NetResultsForm.loaded .Loader {
  display: none;
}
.NetResultsForm .maFormElement,
.NetResultsForm .maFormComboContainer {
  margin-bottom: 1em;
}
.NetResultsForm .maFormElement label,
.NetResultsForm .maFormComboContainer label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 7px;
  margin-bottom: 0;
}
.NetResultsForm .maFormElement label > a,
.NetResultsForm .maFormComboContainer label > a {
  text-decoration: underline;
}
.NetResultsForm .maFormElement label.has-error,
.NetResultsForm .maFormComboContainer label.has-error {
  color: #e30613;
}
.NetResultsForm .maFormElement .formText,
.NetResultsForm .maFormComboContainer .formText {
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border-radius: 4px;
  background-color: #f2f2f2;
  border: 2px solid #f2f2f2;
  padding: 12px 20px;
  width: 100%;
  box-shadow: 0 0 0 0px white;
  transition: box-shadow 200ms;
  margin-top: 0.5em;
  height: auto;
}
.NetResultsForm .maFormElement .formText::-webkit-input-placeholder, .NetResultsForm .maFormComboContainer .formText::-webkit-input-placeholder {
  font-weight: normal;
  color: #737273;
}
.NetResultsForm .maFormElement .formText::-moz-placeholder, .NetResultsForm .maFormComboContainer .formText::-moz-placeholder {
  font-weight: normal;
  color: #737273;
}
.NetResultsForm .maFormElement .formText::placeholder,
.NetResultsForm .maFormComboContainer .formText::placeholder {
  font-weight: normal;
  color: #737273;
}
.NetResultsForm .maFormElement .formText:hover,
.NetResultsForm .maFormComboContainer .formText:hover {
  border-color: #bfbfbf;
}
.NetResultsForm .maFormElement .formText:focus,
.NetResultsForm .maFormComboContainer .formText:focus {
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  box-shadow: unset !important;
}
.NetResultsForm .maFormElement .formText.error,
.NetResultsForm .maFormComboContainer .formText.error {
  border: 2px solid #e30613 !important;
  box-shadow: none;
}
.NetResultsForm .maFormElement .formText.error:focus,
.NetResultsForm .maFormComboContainer .formText.error:focus {
  color: #000000 !important;
  background-color: #ffffff !important;
}
.NetResultsForm .maFormElement .formText.formRequiredError,
.NetResultsForm .maFormComboContainer .formText.formRequiredError {
  border: 2px solid #e30613 !important;
  box-shadow: none;
}
.NetResultsForm .maFormElement .formText.formRequiredError:focus,
.NetResultsForm .maFormComboContainer .formText.formRequiredError:focus {
  color: #000000 !important;
  background-color: #ffffff !important;
}
.NetResultsForm .maFormElement .formRadioLabel,
.NetResultsForm .maFormComboContainer .formRadioLabel {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}
.NetResultsForm .maFormElement .formRadioLabel .formRadio,
.NetResultsForm .maFormComboContainer .formRadioLabel .formRadio {
  height: 16px;
  width: 16px;
  left: 3px;
  top: 0;
  position: relative;
  margin-left: 1px;
  margin-right: 12px;
}
.NetResultsForm .maFormElement .formRadioLabel .formRadio:after,
.NetResultsForm .maFormElement .formRadioLabel .formRadio:before,
.NetResultsForm .maFormComboContainer .formRadioLabel .formRadio:after,
.NetResultsForm .maFormComboContainer .formRadioLabel .formRadio:before {
  height: 24px;
  width: 24px;
  position: absolute;
  top: -2px;
  bottom: 0;
  left: -4px;
  content: "";
  margin-right: 10px;
  display: inline-block;
  margin-top: -2px;
  background: #fcfcfc;
  border-radius: 50%;
}
.NetResultsForm .maFormElement .formRadioLabel .formRadio:before,
.NetResultsForm .maFormComboContainer .formRadioLabel .formRadio:before {
  border: 1px solid #bfbfbf;
}
.NetResultsForm .maFormElement .formRadioLabel .formRadio:after,
.NetResultsForm .maFormComboContainer .formRadioLabel .formRadio:after {
  height: 16px;
  width: 16px;
  margin: 2px 4px;
  background: #2FB4E9;
}
.NetResultsForm .maFormElement .formRadioLabel .formRadio:not(:checked):after,
.NetResultsForm .maFormComboContainer .formRadioLabel .formRadio:not(:checked):after {
  visibility: hidden;
}
.NetResultsForm .maFormElement .formRadioLabel:first-of-type,
.NetResultsForm .maFormComboContainer .formRadioLabel:first-of-type {
  margin-top: 0.5em;
}
.NetResultsForm .maFormElement .formCheckboxLabel,
.NetResultsForm .maFormComboContainer .formCheckboxLabel {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}
.NetResultsForm .maFormElement .formCheckboxLabel .formCheckbox,
.NetResultsForm .maFormComboContainer .formCheckboxLabel .formCheckbox {
  height: 18px;
  width: 18px;
  position: relative;
  margin-left: 1px;
  margin-right: 12px;
}
.NetResultsForm .maFormElement .formCheckboxLabel .formCheckbox:after,
.NetResultsForm .maFormElement .formCheckboxLabel .formCheckbox:before,
.NetResultsForm .maFormComboContainer .formCheckboxLabel .formCheckbox:after,
.NetResultsForm .maFormComboContainer .formCheckboxLabel .formCheckbox:before {
  height: 24px;
  width: 24px;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  display: inline-block;
  margin-right: 10px;
  margin-top: -2px;
  background: #fcfcfc;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
}
.NetResultsForm .maFormElement .formCheckboxLabel .formCheckbox:after,
.NetResultsForm .maFormComboContainer .formCheckboxLabel .formCheckbox:after {
  content: " ";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAzMCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMTNMOSAyMUwyOSAxIiBzdHJva2U9IiMyRkI0RTkiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}
.NetResultsForm .maFormElement .formCheckboxLabel .formCheckbox:not(:checked):after,
.NetResultsForm .maFormComboContainer .formCheckboxLabel .formCheckbox:not(:checked):after {
  visibility: hidden;
}
.NetResultsForm .maFormElement .formCheckboxLabel:first-of-type,
.NetResultsForm .maFormComboContainer .formCheckboxLabel:first-of-type {
  margin-top: 0.5em;
}
.NetResultsForm .maFormElement .formSelect,
.NetResultsForm .maFormElement .formComboCountry,
.NetResultsForm .maFormComboContainer .formSelect,
.NetResultsForm .maFormComboContainer .formComboCountry {
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border-radius: 4px;
  background-color: #f2f2f2;
  border: 2px solid #f2f2f2;
  padding: 12px 20px;
  width: 100%;
  box-shadow: 0 0 0 0px white;
  transition: box-shadow 200ms;
  margin-top: 0.5em;
  height: auto;
  padding-right: 30px;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuNSA2LjVMOCAxMUwxMi41IDYuNSIgc3Ryb2tlPSIjMjIyMjIyIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.NetResultsForm .maFormElement .formSelect::-webkit-input-placeholder, .NetResultsForm .maFormElement .formComboCountry::-webkit-input-placeholder, .NetResultsForm .maFormComboContainer .formSelect::-webkit-input-placeholder, .NetResultsForm .maFormComboContainer .formComboCountry::-webkit-input-placeholder {
  font-weight: normal;
  color: #737273;
}
.NetResultsForm .maFormElement .formSelect::-moz-placeholder, .NetResultsForm .maFormElement .formComboCountry::-moz-placeholder, .NetResultsForm .maFormComboContainer .formSelect::-moz-placeholder, .NetResultsForm .maFormComboContainer .formComboCountry::-moz-placeholder {
  font-weight: normal;
  color: #737273;
}
.NetResultsForm .maFormElement .formSelect::placeholder,
.NetResultsForm .maFormElement .formComboCountry::placeholder,
.NetResultsForm .maFormComboContainer .formSelect::placeholder,
.NetResultsForm .maFormComboContainer .formComboCountry::placeholder {
  font-weight: normal;
  color: #737273;
}
.NetResultsForm .maFormElement .formSelect:hover,
.NetResultsForm .maFormElement .formComboCountry:hover,
.NetResultsForm .maFormComboContainer .formSelect:hover,
.NetResultsForm .maFormComboContainer .formComboCountry:hover {
  border-color: #bfbfbf;
}
.NetResultsForm .maFormElement .formSelect:focus,
.NetResultsForm .maFormElement .formComboCountry:focus,
.NetResultsForm .maFormComboContainer .formSelect:focus,
.NetResultsForm .maFormComboContainer .formComboCountry:focus {
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  box-shadow: unset !important;
}
.NetResultsForm .maFormElement .formSelect.error,
.NetResultsForm .maFormElement .formComboCountry.error,
.NetResultsForm .maFormComboContainer .formSelect.error,
.NetResultsForm .maFormComboContainer .formComboCountry.error {
  border: 2px solid #e30613 !important;
  box-shadow: none;
}
.NetResultsForm .maFormElement .formSelect.error:focus,
.NetResultsForm .maFormElement .formComboCountry.error:focus,
.NetResultsForm .maFormComboContainer .formSelect.error:focus,
.NetResultsForm .maFormComboContainer .formComboCountry.error:focus {
  color: #000000 !important;
  background-color: #ffffff !important;
}
.NetResultsForm .maFormFieldTypeStandardTextarea textarea {
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border-radius: 4px;
  background-color: #f2f2f2;
  border: 2px solid #f2f2f2;
  padding: 12px 20px;
  width: 100%;
  box-shadow: 0 0 0 0px white;
  transition: box-shadow 200ms;
  margin-top: 0.5em;
  height: auto;
  width: 100%;
}
.NetResultsForm .maFormFieldTypeStandardTextarea textarea::-webkit-input-placeholder {
  font-weight: normal;
  color: #737273;
}
.NetResultsForm .maFormFieldTypeStandardTextarea textarea::-moz-placeholder {
  font-weight: normal;
  color: #737273;
}
.NetResultsForm .maFormFieldTypeStandardTextarea textarea::placeholder {
  font-weight: normal;
  color: #737273;
}
.NetResultsForm .maFormFieldTypeStandardTextarea textarea:hover {
  border-color: #bfbfbf;
}
.NetResultsForm .maFormFieldTypeStandardTextarea textarea:focus {
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  box-shadow: unset !important;
}
.NetResultsForm .maFormFieldTypeStandardTextarea textarea.error {
  border: 2px solid #e30613 !important;
  box-shadow: none;
}
.NetResultsForm .maFormFieldTypeStandardTextarea textarea.error:focus {
  color: #000000 !important;
  background-color: #ffffff !important;
}
.NetResultsForm .maFormFieldTypeStandardNumber .formNumber {
  width: 120px;
}
.NetResultsForm .maFormComboContainer {
  display: flex;
  justify-content: space-between;
}
.NetResultsForm .maFormComboContainer input {
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border-radius: 4px;
  background-color: #f2f2f2;
  border: 2px solid #f2f2f2;
  padding: 12px 20px;
  width: 100%;
  box-shadow: 0 0 0 0px white;
  transition: box-shadow 200ms;
  margin-top: 0.5em;
  height: auto;
}
.NetResultsForm .maFormComboContainer input::-webkit-input-placeholder {
  font-weight: normal;
  color: #737273;
}
.NetResultsForm .maFormComboContainer input::-moz-placeholder {
  font-weight: normal;
  color: #737273;
}
.NetResultsForm .maFormComboContainer input::placeholder {
  font-weight: normal;
  color: #737273;
}
.NetResultsForm .maFormComboContainer input:hover {
  border-color: #bfbfbf;
}
.NetResultsForm .maFormComboContainer input:focus {
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  box-shadow: unset !important;
}
.NetResultsForm .maFormComboContainer input.error {
  border: 2px solid #e30613 !important;
  box-shadow: none;
}
.NetResultsForm .maFormComboContainer input.error:focus {
  color: #000000 !important;
  background-color: #ffffff !important;
}
.NetResultsForm .maFormComboHalf {
  width: 49%;
}
.NetResultsForm .formComboAddressLabel,
.NetResultsForm .formComboAddress2Label {
  width: 100%;
}
.NetResultsForm .formGdprNotice .formRadioLabel {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.NetResultsForm .formGdprNotice .formRadioLabel .formRadio {
  height: 16px;
  width: 16px;
  left: 3px;
  top: 0;
  position: relative;
  margin-left: 1px;
  margin-right: 12px;
}
.NetResultsForm .formGdprNotice .formRadioLabel .formRadio:after,
.NetResultsForm .formGdprNotice .formRadioLabel .formRadio:before {
  height: 24px;
  width: 24px;
  position: absolute;
  top: -2px;
  bottom: 0;
  left: -4px;
  content: "";
  margin-right: 10px;
  display: inline-block;
  margin-top: -2px;
  background: #fcfcfc;
  border-radius: 50%;
}
.NetResultsForm .formGdprNotice .formRadioLabel .formRadio:before {
  border: 1px solid #bfbfbf;
}
.NetResultsForm .formGdprNotice .formRadioLabel .formRadio:after {
  height: 16px;
  width: 16px;
  margin: 2px 4px;
  background: #2FB4E9;
}
.NetResultsForm .formGdprNotice .formRadioLabel .formRadio:not(:checked):after {
  visibility: hidden;
}
.NetResultsForm .maFormFieldTypeStandardSubmitButton button {
  font-weight: 500;
  -webkit-hyphens: auto;
  hyphens: auto;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  padding: 20px 24px;
  border: 2px solid #e5e5e5;
  border-radius: 40px;
  color: #000000;
  box-shadow: 0 0 0 0px white;
  transition: box-shadow 200ms;
  background: #e30613;
  color: #ffffff;
  border-color: #e30613;
}
.NetResultsForm .maFormFieldTypeStandardSubmitButton button:disabled {
  color: #999999;
}
@media (max-width: 900px) {
  .NetResultsForm .maFormFieldTypeStandardSubmitButton button {
    font-size: 12px;
    padding: 16px 20px;
    text-align: center;
  }
}
.NetResultsForm .maFormFieldTypeStandardSubmitButton button:not(:disabled) {
  transition: all 400ms;
}
.NetResultsForm .maFormFieldTypeStandardSubmitButton button:not(:disabled):hover {
  border-color: #e30613;
}
.NetResultsForm .maFormFieldTypeStandardSubmitButton button:hover {
  background-color: rgb(202.1566523605, 5.3433476395, 16.9206008584);
}
.NetResultsForm .g-recaptcha {
  margin: 40px;
}

.OptionGrid {
  margin-bottom: 49px;
}

.OptionGrid--body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px;
}
@media (max-width: 740px) {
  .OptionGrid--body {
    grid-template-columns: repeat(2, 1fr);
  }
}

.OptionInput {
  position: relative;
  font-size: 14px;
}
.OptionInput > input {
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  width: 24px;
  height: 26px;
  opacity: 0;
}
.OptionInput > label {
  padding-left: 36px;
  line-height: 24px;
  cursor: pointer;
  display: block;
}
.OptionInput > label.NetlifyForm--hiddenCheckboxHack {
  display: none;
}
.OptionInput > label:before,
.OptionInput > label:after {
  height: 24px;
  width: 24px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid;
  background: white;
}
.OptionInput > label:hover:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
.OptionInput > input:not(:checked) + label:after {
  visibility: hidden;
}
.OptionInput > input.blue {
  height: 300px;
}
.OptionInput > input.blue + label:before {
  color: #005288;
}
.OptionInput > input.blue + label:after {
  color: #005288;
}
.OptionInput > input.error + label:before {
  border-color: #ca1b45;
  background-color: #ffcbcf;
}
.OptionInput > input:disabled + label {
  opacity: 0.3;
}

.OptionInput input[type=radio] + label:before,
.OptionInput input[type=radio] + label:after {
  border-radius: 24px;
}
.OptionInput input[type=radio] + label:after {
  height: 8px;
  width: 8px;
  margin: 8px;
  background: currentColor;
}

.OptionInput input[type=checkbox]:checked + label:before {
  background: currentColor;
}
.OptionInput input[type=checkbox] + label:before {
  border-radius: 3px;
}
.OptionInput input[type=checkbox] + label:after {
  height: 7px;
  width: 14px;
  margin: 7px 5px;
  background: transparent;
  border: 2px solid #ffffff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.OptionInputBox {
  font-weight: 500;
  position: relative;
  font-size: 16px;
  overflow-wrap: break-word;
}
@media (max-width: 900px) {
  .OptionInputBox {
    font-size: 14px;
  }
}
.OptionInputBox > input {
  height: 26px;
  width: 24px;
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  opacity: 0;
}
.OptionInputBox > label {
  position: relative;
  padding: 48px 0;
  cursor: pointer;
  display: block;
  text-align: center;
}
@media (max-width: 900px) {
  .OptionInputBox > label {
    padding: 0;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.OptionInputBox > label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #e5e5e5;
  background: transparent;
}
.OptionInputBox > label:hover:before {
  border-color: #bfbfbf;
}
.OptionInputBox > input:checked + label {
  color: #2FB4E9;
}
.OptionInputBox > input:checked + label:before {
  border-color: #2FB4E9;
}
.OptionInputBox > input:disabled + label {
  opacity: 0.3;
}

.OptionInputBox input[type=radio] + label:before {
  border-radius: 4px;
}

.OptionInputBox input[type=checkbox]:checked + label:before {
  background: currentColor;
}
.OptionInputBox input[type=checkbox] + label:before {
  border-radius: 3px;
}
.OptionInputBox input[type=checkbox] + label:after {
  width: 14px;
  height: 7px;
  margin: 7px 5px;
  background: transparent;
  border: 2px solid #ffffff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.Options .OptionInput {
  margin-bottom: 12px;
}
.Options .OptionInput:last-of-type {
  margin-bottom: 0px;
}
.Options.inline .OptionInput {
  display: inline-block;
}
.Options.inline .OptionInput:not(:last-child) {
  margin-right: 30px;
}

.Options--error {
  display: none;
}
.has-errors .Options--error {
  display: block;
  padding: 8px;
  margin-top: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  background-color: #e30613;
  border-radius: 3px;
}

.Select {
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border-radius: 4px;
  background-color: #f2f2f2;
  border: 2px solid #f2f2f2;
  padding: 12px 20px;
  width: 100%;
  box-shadow: 0 0 0 0px white;
  transition: box-shadow 200ms;
  margin-top: 0.5em;
  height: auto;
  padding-right: 30px;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuNSA2LjVMOCAxMUwxMi41IDYuNSIgc3Ryb2tlPSIjMjIyMjIyIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.Select::-webkit-input-placeholder {
  font-weight: normal;
  color: #737273;
}
.Select::-moz-placeholder {
  font-weight: normal;
  color: #737273;
}
.Select::placeholder {
  font-weight: normal;
  color: #737273;
}
.Select:hover {
  border-color: #bfbfbf;
}
.Select:focus {
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  box-shadow: unset !important;
}
.Select.error {
  border: 2px solid #e30613 !important;
  box-shadow: none;
}
.Select.error:focus {
  color: #000000 !important;
  background-color: #ffffff !important;
}

textarea.Input {
  height: 12em;
}

html {
  --page-margin: 100px;
}
@media (max-width: 1150px) {
  html {
    --page-margin: 60px;
  }
}
@media (max-width: 740px) {
  html {
    --page-margin: 20px;
  }
}

.L-Page {
  max-width: 1320px;
  margin: 0 auto;
}

.l-SiteWidth {
  margin-left: 100px;
  margin-left: var(--page-margin);
  margin-right: 100px;
  margin-right: var(--page-margin);
  position: relative;
}

.SiteWrapper {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
}

.row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-left: 0%;
  padding-right: 0%;
  margin-left: -20px;
  margin-right: -20px;
}

.col-1 {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 25%;
  max-width: 25%;
}

.col-4 {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 50%;
  max-width: 50%;
}

.col-7 {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 75%;
  max-width: 75%;
}

.col-10 {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 100%;
  max-width: 100%;
}

.col-1-c {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 8.3333333333%;
  max-width: 8.3333333333%;
  margin-left: 45.8333333333%;
}

.col-2-c {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 16.6666666667%;
  max-width: 16.6666666667%;
  margin-left: 41.6666666667%;
}

.col-3-c {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 25%;
  max-width: 25%;
  margin-left: 37.5%;
}

.col-4-c {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 33.3333333333%;
  max-width: 33.3333333333%;
  margin-left: 33.3333333333%;
}

.col-5-c {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 41.6666666667%;
  max-width: 41.6666666667%;
  margin-left: 29.1666666667%;
}

.col-6-c {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 50%;
  max-width: 50%;
  margin-left: 25%;
}

.col-7-c {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 58.3333333333%;
  max-width: 58.3333333333%;
  margin-left: 20.8333333333%;
}

.col-8-c {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 66.6666666667%;
  max-width: 66.6666666667%;
  margin-left: 16.6666666667%;
}

.col-9-c {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 75%;
  max-width: 75%;
  margin-left: 12.5%;
}

.col-10-c {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 83.3333333333%;
  max-width: 83.3333333333%;
  margin-left: 8.3333333333%;
}

.col-11-c {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 91.6666666667%;
  max-width: 91.6666666667%;
  margin-left: 4.1666666667%;
}

.col-12-c {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  flex: 1 0 100%;
  max-width: 100%;
  margin-left: 0%;
}

.col-offset-1 {
  margin-left: 8.3333333333%;
}

.col-offset-2 {
  margin-left: 16.6666666667%;
}

.col-offset-3 {
  margin-left: 25%;
}

.col-offset-4 {
  margin-left: 33.3333333333%;
}

.col-offset-5 {
  margin-left: 41.6666666667%;
}

.col-offset-6 {
  margin-left: 50%;
}

.col-offset-7 {
  margin-left: 58.3333333333%;
}

.col-offset-8 {
  margin-left: 66.6666666667%;
}

.col-offset-9 {
  margin-left: 75%;
}

.col-offset-10 {
  margin-left: 83.3333333333%;
}

.col-offset-11 {
  margin-left: 91.6666666667%;
}

.col-offset-12 {
  margin-left: 100%;
}

@media (max-width: 1150px) {
  .col-tab-1 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 8.3333333333%;
    max-width: 8.3333333333%;
    margin-left: 0;
  }
  .col-tab-2 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 16.6666666667%;
    max-width: 16.6666666667%;
    margin-left: 0;
  }
  .col-tab-3 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 25%;
    max-width: 25%;
    margin-left: 0;
  }
  .col-tab-4 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    margin-left: 0;
  }
  .col-tab-5 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 41.6666666667%;
    max-width: 41.6666666667%;
    margin-left: 0;
  }
  .col-tab-6 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 50%;
    max-width: 50%;
    margin-left: 0;
  }
  .col-tab-7 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 58.3333333333%;
    max-width: 58.3333333333%;
    margin-left: 0;
  }
  .col-tab-8 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 66.6666666667%;
    max-width: 66.6666666667%;
    margin-left: 0;
  }
  .col-tab-9 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 75%;
    max-width: 75%;
    margin-left: 0;
  }
  .col-tab-10 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 83.3333333333%;
    max-width: 83.3333333333%;
    margin-left: 0;
  }
  .col-tab-11 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 91.6666666667%;
    max-width: 91.6666666667%;
    margin-left: 0;
  }
  .col-tab-12 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .col-tab-1-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 8.3333333333%;
    max-width: 8.3333333333%;
    margin-left: 45.8333333333%;
  }
  .col-tab-2-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 16.6666666667%;
    max-width: 16.6666666667%;
    margin-left: 41.6666666667%;
  }
  .col-tab-3-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 25%;
    max-width: 25%;
    margin-left: 37.5%;
  }
  .col-tab-4-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    margin-left: 33.3333333333%;
  }
  .col-tab-5-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 41.6666666667%;
    max-width: 41.6666666667%;
    margin-left: 29.1666666667%;
  }
  .col-tab-6-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 50%;
    max-width: 50%;
    margin-left: 25%;
  }
  .col-tab-7-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 58.3333333333%;
    max-width: 58.3333333333%;
    margin-left: 20.8333333333%;
  }
  .col-tab-8-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 66.6666666667%;
    max-width: 66.6666666667%;
    margin-left: 16.6666666667%;
  }
  .col-tab-9-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 75%;
    max-width: 75%;
    margin-left: 12.5%;
  }
  .col-tab-10-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 83.3333333333%;
    max-width: 83.3333333333%;
    margin-left: 8.3333333333%;
  }
  .col-tab-11-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 91.6666666667%;
    max-width: 91.6666666667%;
    margin-left: 4.1666666667%;
  }
  .col-tab-12-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 100%;
    max-width: 100%;
    margin-left: 0%;
  }
  .col-tab-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-tab-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-tab-offset-3 {
    margin-left: 25%;
  }
  .col-tab-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-tab-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-tab-offset-6 {
    margin-left: 50%;
  }
  .col-tab-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-tab-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-tab-offset-9 {
    margin-left: 75%;
  }
  .col-tab-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-tab-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-tab-offset-12 {
    margin-left: 100%;
  }
}
@media (max-width: 900px) {
  .col-tabp-1 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 8.3333333333%;
    max-width: 8.3333333333%;
    margin-left: 0;
  }
  .col-tabp-2 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 16.6666666667%;
    max-width: 16.6666666667%;
    margin-left: 0;
  }
  .col-tabp-3 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 25%;
    max-width: 25%;
    margin-left: 0;
  }
  .col-tabp-4 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    margin-left: 0;
  }
  .col-tabp-5 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 41.6666666667%;
    max-width: 41.6666666667%;
    margin-left: 0;
  }
  .col-tabp-6 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 50%;
    max-width: 50%;
    margin-left: 0;
  }
  .col-tabp-7 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 58.3333333333%;
    max-width: 58.3333333333%;
    margin-left: 0;
  }
  .col-tabp-8 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 66.6666666667%;
    max-width: 66.6666666667%;
    margin-left: 0;
  }
  .col-tabp-9 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 75%;
    max-width: 75%;
    margin-left: 0;
  }
  .col-tabp-10 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 83.3333333333%;
    max-width: 83.3333333333%;
    margin-left: 0;
  }
  .col-tabp-11 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 91.6666666667%;
    max-width: 91.6666666667%;
    margin-left: 0;
  }
  .col-tabp-12 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .col-tabp-1-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 8.3333333333%;
    max-width: 8.3333333333%;
    margin-left: 45.8333333333%;
  }
  .col-tabp-2-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 16.6666666667%;
    max-width: 16.6666666667%;
    margin-left: 41.6666666667%;
  }
  .col-tabp-3-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 25%;
    max-width: 25%;
    margin-left: 37.5%;
  }
  .col-tabp-4-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    margin-left: 33.3333333333%;
  }
  .col-tabp-5-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 41.6666666667%;
    max-width: 41.6666666667%;
    margin-left: 29.1666666667%;
  }
  .col-tabp-6-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 50%;
    max-width: 50%;
    margin-left: 25%;
  }
  .col-tabp-7-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 58.3333333333%;
    max-width: 58.3333333333%;
    margin-left: 20.8333333333%;
  }
  .col-tabp-8-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 66.6666666667%;
    max-width: 66.6666666667%;
    margin-left: 16.6666666667%;
  }
  .col-tabp-9-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 75%;
    max-width: 75%;
    margin-left: 12.5%;
  }
  .col-tabp-10-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 83.3333333333%;
    max-width: 83.3333333333%;
    margin-left: 8.3333333333%;
  }
  .col-tabp-11-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 91.6666666667%;
    max-width: 91.6666666667%;
    margin-left: 4.1666666667%;
  }
  .col-tabp-12-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 100%;
    max-width: 100%;
    margin-left: 0%;
  }
  .col-tabp-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-tabp-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-tabp-offset-3 {
    margin-left: 25%;
  }
  .col-tabp-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-tabp-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-tabp-offset-6 {
    margin-left: 50%;
  }
  .col-tabp-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-tabp-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-tabp-offset-9 {
    margin-left: 75%;
  }
  .col-tabp-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-tabp-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-tabp-offset-12 {
    margin-left: 100%;
  }
}
@media (max-width: 740px) {
  .col-mob-1 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 8.3333333333%;
    max-width: 8.3333333333%;
    margin-left: 0;
  }
  .col-mob-2 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 16.6666666667%;
    max-width: 16.6666666667%;
    margin-left: 0;
  }
  .col-mob-3 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 25%;
    max-width: 25%;
    margin-left: 0;
  }
  .col-mob-4 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    margin-left: 0;
  }
  .col-mob-5 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 41.6666666667%;
    max-width: 41.6666666667%;
    margin-left: 0;
  }
  .col-mob-6 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 50%;
    max-width: 50%;
    margin-left: 0;
  }
  .col-mob-7 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 58.3333333333%;
    max-width: 58.3333333333%;
    margin-left: 0;
  }
  .col-mob-8 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 66.6666666667%;
    max-width: 66.6666666667%;
    margin-left: 0;
  }
  .col-mob-9 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 75%;
    max-width: 75%;
    margin-left: 0;
  }
  .col-mob-10 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 83.3333333333%;
    max-width: 83.3333333333%;
    margin-left: 0;
  }
  .col-mob-11 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 91.6666666667%;
    max-width: 91.6666666667%;
    margin-left: 0;
  }
  .col-mob-12 {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .col-mob-1-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 8.3333333333%;
    max-width: 8.3333333333%;
    margin-left: 45.8333333333%;
  }
  .col-mob-2-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 16.6666666667%;
    max-width: 16.6666666667%;
    margin-left: 41.6666666667%;
  }
  .col-mob-3-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 25%;
    max-width: 25%;
    margin-left: 37.5%;
  }
  .col-mob-4-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
    margin-left: 33.3333333333%;
  }
  .col-mob-5-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 41.6666666667%;
    max-width: 41.6666666667%;
    margin-left: 29.1666666667%;
  }
  .col-mob-6-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 50%;
    max-width: 50%;
    margin-left: 25%;
  }
  .col-mob-7-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 58.3333333333%;
    max-width: 58.3333333333%;
    margin-left: 20.8333333333%;
  }
  .col-mob-8-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 66.6666666667%;
    max-width: 66.6666666667%;
    margin-left: 16.6666666667%;
  }
  .col-mob-9-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 75%;
    max-width: 75%;
    margin-left: 12.5%;
  }
  .col-mob-10-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 83.3333333333%;
    max-width: 83.3333333333%;
    margin-left: 8.3333333333%;
  }
  .col-mob-11-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 91.6666666667%;
    max-width: 91.6666666667%;
    margin-left: 4.1666666667%;
  }
  .col-mob-12-c {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 0 100%;
    max-width: 100%;
    margin-left: 0%;
  }
  .col-mob-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-mob-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-mob-offset-3 {
    margin-left: 25%;
  }
  .col-mob-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-mob-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-mob-offset-6 {
    margin-left: 50%;
  }
  .col-mob-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-mob-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-mob-offset-9 {
    margin-left: 75%;
  }
  .col-mob-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-mob-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-mob-offset-12 {
    margin-left: 100%;
  }
}
.l-Flex {
  display: flex;
  flex-wrap: wrap;
  --gutter: 30px;
  margin-left: calc(-1 * var(--gutter));
  --gap: 30px;
  margin-bottom: calc(-1 * var(--gap));
}
.l-Flex.gutter-none {
  --gutter: 0px;
}
.l-Flex.gutter-small {
  --gutter: 10px;
}
.l-Flex.gap-none {
  --gap: 0px;
}
.l-Flex.gap-small {
  --gap: 10px;
}
.l-Flex > * {
  flex: 0 0 auto;
  margin-left: var(--gutter);
  margin-bottom: var(--gap);
}
.l-Flex > .l-1of1 {
  width: calc(100% / 1 * 1 - var(--gutter));
}
.l-Flex > .l-1of2 {
  width: calc(100% / 2 * 1 - var(--gutter));
}
.l-Flex > .l-1of3 {
  width: calc(100% / 3 * 1 - var(--gutter));
}
.l-Flex > .l-2of3 {
  width: calc(100% / 3 * 2 - var(--gutter));
}
.l-Flex > .l-1of4 {
  width: calc(100% / 4 * 1 - var(--gutter));
}
.l-Flex > .l-3of4 {
  width: calc(100% / 4 * 3 - var(--gutter));
}
.l-Flex > .l-1of5 {
  width: calc(100% / 5 * 1 - var(--gutter));
}
.l-Flex > .l-2of5 {
  width: calc(100% / 5 * 2 - var(--gutter));
}
.l-Flex > .l-3of5 {
  width: calc(100% / 5 * 3 - var(--gutter));
}
.l-Flex > .l-4of5 {
  width: calc(100% / 5 * 4 - var(--gutter));
}
.l-Flex > .l-flex {
  flex-grow: 1;
}
@media (max-width: 1150px) {
  .l-Flex > .tl-1of1 {
    width: calc(100% / 1 * 1 - var(--gutter));
  }
  .l-Flex > .tl-1of2 {
    width: calc(100% / 2 * 1 - var(--gutter));
  }
  .l-Flex > .tl-1of3 {
    width: calc(100% / 3 * 1 - var(--gutter));
  }
  .l-Flex > .tl-2of3 {
    width: calc(100% / 3 * 2 - var(--gutter));
  }
  .l-Flex > .tl-1of4 {
    width: calc(100% / 4 * 1 - var(--gutter));
  }
  .l-Flex > .tl-3of4 {
    width: calc(100% / 4 * 3 - var(--gutter));
  }
  .l-Flex > .tl-1of5 {
    width: calc(100% / 5 * 1 - var(--gutter));
  }
  .l-Flex > .tl-2of5 {
    width: calc(100% / 5 * 2 - var(--gutter));
  }
  .l-Flex > .tl-3of5 {
    width: calc(100% / 5 * 3 - var(--gutter));
  }
  .l-Flex > .tl-4of5 {
    width: calc(100% / 5 * 4 - var(--gutter));
  }
  .l-Flex > .tl-flex {
    flex-grow: 1;
  }
}
@media (max-width: 900px) {
  .l-Flex > .tp-1of1 {
    width: calc(100% / 1 * 1 - var(--gutter));
  }
  .l-Flex > .tp-1of2 {
    width: calc(100% / 2 * 1 - var(--gutter));
  }
  .l-Flex > .tp-1of3 {
    width: calc(100% / 3 * 1 - var(--gutter));
  }
  .l-Flex > .tp-2of3 {
    width: calc(100% / 3 * 2 - var(--gutter));
  }
  .l-Flex > .tp-1of4 {
    width: calc(100% / 4 * 1 - var(--gutter));
  }
  .l-Flex > .tp-3of4 {
    width: calc(100% / 4 * 3 - var(--gutter));
  }
  .l-Flex > .tp-1of5 {
    width: calc(100% / 5 * 1 - var(--gutter));
  }
  .l-Flex > .tp-2of5 {
    width: calc(100% / 5 * 2 - var(--gutter));
  }
  .l-Flex > .tp-3of5 {
    width: calc(100% / 5 * 3 - var(--gutter));
  }
  .l-Flex > .tp-4of5 {
    width: calc(100% / 5 * 4 - var(--gutter));
  }
  .l-Flex > .tp-flex {
    flex-grow: 1;
  }
}
@media (max-width: 740px) {
  .l-Flex > .ml-1of1 {
    width: calc(100% / 1 * 1 - var(--gutter));
  }
  .l-Flex > .ml-1of2 {
    width: calc(100% / 2 * 1 - var(--gutter));
  }
  .l-Flex > .ml-1of3 {
    width: calc(100% / 3 * 1 - var(--gutter));
  }
  .l-Flex > .ml-2of3 {
    width: calc(100% / 3 * 2 - var(--gutter));
  }
  .l-Flex > .ml-1of4 {
    width: calc(100% / 4 * 1 - var(--gutter));
  }
  .l-Flex > .ml-3of4 {
    width: calc(100% / 4 * 3 - var(--gutter));
  }
  .l-Flex > .ml-1of5 {
    width: calc(100% / 5 * 1 - var(--gutter));
  }
  .l-Flex > .ml-2of5 {
    width: calc(100% / 5 * 2 - var(--gutter));
  }
  .l-Flex > .ml-3of5 {
    width: calc(100% / 5 * 3 - var(--gutter));
  }
  .l-Flex > .ml-4of5 {
    width: calc(100% / 5 * 4 - var(--gutter));
  }
  .l-Flex > .ml-flex {
    flex-grow: 1;
  }
}
@media (max-width: 400px) {
  .l-Flex > .mp-1of1 {
    width: calc(100% / 1 * 1 - var(--gutter));
  }
  .l-Flex > .mp-1of2 {
    width: calc(100% / 2 * 1 - var(--gutter));
  }
  .l-Flex > .mp-1of3 {
    width: calc(100% / 3 * 1 - var(--gutter));
  }
  .l-Flex > .mp-2of3 {
    width: calc(100% / 3 * 2 - var(--gutter));
  }
  .l-Flex > .mp-1of4 {
    width: calc(100% / 4 * 1 - var(--gutter));
  }
  .l-Flex > .mp-3of4 {
    width: calc(100% / 4 * 3 - var(--gutter));
  }
  .l-Flex > .mp-1of5 {
    width: calc(100% / 5 * 1 - var(--gutter));
  }
  .l-Flex > .mp-2of5 {
    width: calc(100% / 5 * 2 - var(--gutter));
  }
  .l-Flex > .mp-3of5 {
    width: calc(100% / 5 * 3 - var(--gutter));
  }
  .l-Flex > .mp-4of5 {
    width: calc(100% / 5 * 4 - var(--gutter));
  }
  .l-Flex > .mp-flex {
    flex-grow: 1;
  }
}

.MetaNav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -18px;
}

.MetaNav--linkList {
  display: flex;
  gap: 12px;
}

.MetaNav--link {
  font-weight: 500;
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 14px 24px;
  border-radius: 40px;
  border: 2px solid #e5e5e5;
  font-size: 16px;
  line-height: 1;
  transition: 100ms ease;
}
.MetaNav--link.Red {
  border-color: #ffcbcf;
  color: #e30613;
}
.MetaNav--link .Icon {
  height: 12px;
  width: 12px;
  transition: 100ms ease;
}
@media (hover: hover) {
  [data-variant=consumer] .MetaNav--link:hover {
    border-color: #e30613;
  }
  [data-variant=consumer] .MetaNav--link:focus {
    border-color: #e30613;
  }
}
[data-page-section=professional] .MetaNav--link {
  background: #ffffff;
}
@media (hover: hover) {
  .MetaNav--link:hover .Icon {
    translate: 3px -3px;
  }
  .MetaNav--link:hover.Red {
    border-color: #e30613;
  }
  .MetaNav--link:focus .Icon {
    translate: 3px -3px;
  }
  .MetaNav--link:focus.Red {
    border-color: #e30613;
  }
}

.ServiceNavTeaser {
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.04);
  transition: 200ms ease;
}
@media (hover: hover) {
  .ServiceNavTeaser:hover {
    box-shadow: 0px 0px 20px 5px rgba(47, 180, 233, 0.08);
  }
  .ServiceNavTeaser:hover .ServiceNavTeaser--linkIcon .Icon {
    transform: translateX(0.25em);
  }
  .ServiceNavTeaser:focus {
    box-shadow: 0px 0px 20px 5px rgba(47, 180, 233, 0.08);
  }
  .ServiceNavTeaser:focus .ServiceNavTeaser--linkIcon .Icon {
    transform: translateX(0.25em);
  }
}

.ServiceNavTeaser--image {
  width: max(30%, 100px);
  flex-shrink: 0;
}
.ServiceNavTeaser--image .Picture {
  height: 100%;
  width: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ServiceNavTeaser--content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  flex-grow: 1;
}

.ServiceNavTeaser--title {
  font-weight: 700;
}

.ServiceNavTeaser--text {
  color: #737273;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.14px;
}

.ServiceNavTeaser--icon {
  height: 24px;
  width: 24px;
  color: #005288;
}

.ServiceNavTeaser--linkIcon {
  display: grid;
  place-items: center;
  padding-right: 24px;
  color: #005288;
}
.ServiceNavTeaser--linkIcon .Icon {
  height: 16px;
  width: 16px;
  transition: 200ms ease;
}

.ServiceNavTeaser--link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

[data-js-inview] {
  transition: transform 1000ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
[data-js-inview]:not(.is-inview) {
  will-change: transform;
}
[data-js-inview].stacked:nth-child(1n) {
  transition-delay: 100ms;
}
[data-js-inview].stacked:nth-child(2n) {
  transition-delay: 200ms;
}
[data-js-inview].stacked:nth-child(3n) {
  transition-delay: 300ms;
}
[data-js-inview].stacked:nth-child(4n) {
  transition-delay: 400ms;
}
[data-js-inview].stacked:nth-child(5n) {
  transition-delay: 500ms;
}
[data-js-inview].stacked:nth-child(6n) {
  transition-delay: 600ms;
}
[data-js-inview].stacked:nth-child(7n) {
  transition-delay: 700ms;
}
[data-js-inview].stacked:nth-child(8n) {
  transition-delay: 800ms;
}
[data-js-inview].stacked:nth-child(9n) {
  transition-delay: 900ms;
}
[data-js-inview].stacked:nth-child(10n) {
  transition-delay: 1000ms;
}
[data-js-inview].stacked:not(.is-inview) {
  opacity: 0;
}

[data-js-inview=slide-up]:not(.is-inview) {
  transform: translateY(min(25%, 40px));
}

[data-js-inview=slide-left]:not(.is-inview) {
  transform: translateX(min(25%, 50px));
  opacity: 0;
}

[data-js-inview=slide-right]:not(.is-inview) {
  transform: translateX(min(-25%, -50px));
  opacity: 0;
}

.Loader {
  font-size: 40px;
  color: #767676;
  cursor: wait;
}
.Loader::after, .Loader::before {
  content: "";
  position: absolute;
  width: 0.65ex;
  height: 0.65ex;
  top: 50%;
  left: 50%;
  margin-left: -0.325ex;
  margin-top: -0.325ex;
  border-radius: 100px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-bottom-color: transparent;
  animation: Loader 1s -0.2s infinite linear;
}
.Loader::before {
  animation: Loader 1s infinite ease-in-out;
}
.Loader.standalone {
  position: relative;
  display: block;
  height: 100px;
}
.Loader.overlay {
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99;
  height: 100%;
}
.Loader.large {
  font-size: 80px;
}

@keyframes Loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.MediaSwiper.MediaSwiper {
  position: relative;
}
.MediaSwiper.MediaSwiper .MediaSwiper--inner {
  position: absolute;
  left: 80px;
  width: calc(66% - 80px);
  top: 80px;
  bottom: 80px;
  height: auto;
}
.MediaSwiper.MediaSwiper .MediaSwiper--ui {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: auto;
  width: auto;
}
.MediaSwiper.MediaSwiper .MediaSwiper--aside {
  position: absolute;
  width: calc(34% - 80px);
  right: 80px;
  top: 80px;
  bottom: 80px;
  height: auto;
}
.MediaSwiper.MediaSwiper .MediaSwiper--content {
  opacity: 1;
}
.MediaSwiper.MediaSwiper:not(.hasContent) .MediaSwiper--inner {
  width: calc(100% - 160px);
}
.MediaSwiper.MediaSwiper:not(.hasContent) .MediaSwiper--aside {
  width: 0;
}
@media (max-width: 900px) {
  .MediaSwiper.MediaSwiper .MediaSwiper--inner {
    left: 0;
    top: 64px;
    width: 100%;
    height: 55%;
  }
  .MediaSwiper.MediaSwiper .MediaSwiper--aside {
    width: calc(100% - 40px);
    height: calc(45% - 84px);
    left: 20px;
    bottom: 20px;
    top: auto;
  }
  .MediaSwiper.MediaSwiper:not(.hasContent) .MediaSwiper--inner {
    left: 0;
    top: 64px;
    width: 100%;
    height: auto;
    bottom: 64px;
  }
  .MediaSwiper.MediaSwiper:not(.hasContent) .MediaSwiper--aside {
    display: none;
  }
}
.MediaSwiper.MediaSwiper .pswp__img {
  background: #e5e5e5;
}
.MediaSwiper.MediaSwiper .pswp__counter {
  color: #767676;
}
@media (min-width: 901px) {
  .MediaSwiper.MediaSwiper .pswp__counter {
    width: 100%;
    text-align: center;
    top: calc(100vh - 100% - 20px);
    top: calc(var(--screenheight) - 100% - 20px);
    bottom: 0;
  }
}
.MediaSwiper.MediaSwiper .pswp__button.pswp__button--arrow--left, .MediaSwiper.MediaSwiper .pswp__button.pswp__button--arrow--right {
  background-color: #ffffff;
  top: 50%;
  transform: translateY(15px);
}
@media (max-width: 900px) {
  .MediaSwiper.MediaSwiper .pswp__button.pswp__button--arrow--left, .MediaSwiper.MediaSwiper .pswp__button.pswp__button--arrow--right {
    top: calc(45% + 64px);
  }
}
@media (max-width: 740px) {
  .MediaSwiper.MediaSwiper .pswp__button.pswp__button--arrow--left, .MediaSwiper.MediaSwiper .pswp__button.pswp__button--arrow--right {
    display: none;
  }
}
.MediaSwiper.MediaSwiper .pswp__button.pswp__button--arrow--left::before, .MediaSwiper.MediaSwiper .pswp__button.pswp__button--arrow--right::before {
  display: none;
}
.MediaSwiper.MediaSwiper .pswp__button.pswp__button--arrow--left .Icon, .MediaSwiper.MediaSwiper .pswp__button.pswp__button--arrow--right .Icon {
  pointer-events: none;
}
.MediaSwiper.MediaSwiper .pswp__button.pswp__button--arrow--left {
  left: 10px;
}
.MediaSwiper.MediaSwiper .pswp__button.pswp__button--arrow--right {
  right: 10px;
}
.MediaSwiper.MediaSwiper .pswp__button.pswp__button--close {
  width: 44px;
  height: 44px;
}
.MediaSwiper.MediaSwiper .pswp__button.pswp__button--close:after, .MediaSwiper.MediaSwiper .pswp__button.pswp__button--close:before {
  width: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.MediaSwiper.MediaSwiper .pswp__button.pswp__button--close:after {
  transform: translateX(-50%) rotate(-45deg);
}

.MediaSwiper--slider.pswp__container {
  z-index: 10;
}

.MediaSwiper--ui.MediaSwiper--ui {
  position: relative;
  z-index: 20;
  pointer-events: none;
}
.MediaSwiper--ui.MediaSwiper--ui button {
  pointer-events: all;
}

.pswp .MediaSwiper--ui--top.pswp__top-bar {
  margin: 10px;
  width: auto;
  right: 0;
}

/* ASIDE  */
.MediaSwiper--aside {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  z-index: 15;
}

.MediaSwiper--content {
  padding: 1em 0 0;
  max-height: 100%;
  overflow: auto;
}
@media (min-width: 901px) {
  .MediaSwiper--content {
    width: 300px;
    padding: 20px;
  }
}
.MediaSwiper--content::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.MediaSwiper--content::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

/* SLIDE CONTENT */
.MediaSwiper--slide--title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}

.MediaSwiper--slide--text {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #767676;
}
@media (max-width: 740px) {
  .MediaSwiper--slide--text {
    font-size: 14px;
  }
}
.MediaSwiper--slide--title + .MediaSwiper--slide--text {
  margin-top: 20px;
}

/* OTHER */
.MediaSwiper--caption {
  display: none;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  transform-origin: left top;
  /* for open/close transition */
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #000;
}

.pswp__error-msg a {
  color: #000;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  transition: opacity 0.2s;
  box-shadow: none;
  color: #000;
}

.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  width: 44px;
  height: 44px;
}

.pswp__button--close:after, .pswp__button--close:before {
  content: "";
  border-top: 1px solid currentColor;
  width: 36px;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: rotate(45deg);
}
.pswp__button--close:after {
  transform: rotate(-45deg);
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  border: 1px none currentColor;
  border-style: none solid solid none;
  height: 30px;
  width: 30px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  transform: rotate(135deg);
  left: 18px;
}

.pswp__button--arrow--right:before {
  transform: rotate(-45deg);
  left: auto;
  right: 18px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #000;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #bbb;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #ccc;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /*
  		The idea of animating inner circle is based on Polymer ("material") loading indicator
  		 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  	*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #000;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}
@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-140deg);
  }
  100% {
    transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

.Odometer {
  line-height: 1;
  overflow: hidden;
}

.Odometer--digit {
  overflow: hidden;
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.Odometer--dummy {
  display: inline-block;
  visibility: hidden;
}

.Odometer--spinner {
  position: absolute;
  top: 0;
  left: 0;
}
.Odometer--spinner > span {
  display: block;
}
.Odometer--spinner > span:last-child {
  position: absolute;
  top: 100%;
  left: 0;
}

.flickity-button-icon {
  fill: none;
}
.flickity-button-icon path {
  stroke: currentColor;
  stroke-width: 3px;
  stroke-linecap: round;
}

.Accordion {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 160px;
}
@media (max-width: 740px) {
  .Accordion {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .Accordion {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .Accordion {
    margin-bottom: 60px;
  }
}
.Accordion[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .Accordion[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .Accordion[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.Accordion[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .Accordion[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .Accordion[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.Accordion[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .Accordion[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .Accordion[data-component-gap=small] {
    margin-bottom: 20px;
  }
}

.Accordion--body {
  grid-column: 3/span 8;
}
@media (max-width: 900px) {
  .Accordion--body {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .Accordion--body {
    grid-column: 1/span 4;
  }
}
@media (max-width: 1150px) {
  .Accordion--body {
    grid-column: 2/span 10;
  }
}
@media (max-width: 1150px) and (max-width: 900px) {
  .Accordion--body {
    grid-column: 1/span 12;
  }
}
@media (max-width: 1150px) and (max-width: 740px) {
  .Accordion--body {
    grid-column: 1/span 4;
  }
}

.Accordion--item {
  border-top: 1px solid #e1e1e1;
}
.Accordion--item:last-of-type {
  border-bottom: 1px solid #e1e1e1;
}

@media print {
  .AccordionItem {
    border-top: 0;
    page-break-inside: avoid;
    margin-bottom: 50px;
  }
}

.AccordionItem--header {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  transition: color 150ms ease-in-out;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .AccordionItem--header {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media (max-width: 740px) {
  .AccordionItem--header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media print {
  .AccordionItem--header {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 25px;
  }
}

.AccordionItem--icon {
  margin-right: 20px;
  flex: 0 0 auto;
}
.AccordionItem--icon > img {
  max-width: 180px;
  height: auto;
}
@media (max-width: 580px) {
  .AccordionItem--icon > img {
    max-width: 90px;
  }
}

.AccordionItem--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-right: 55px;
  position: relative;
}
@media (max-width: 740px) {
  .AccordionItem--title {
    font-size: 18px;
  }
}

.AccordionItem--button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.AccordionItem--button[aria-expanded=true] .AccordionItem--button--icon::after {
  transform: scaleY(0);
  opacity: 0;
}
.AccordionItem--button:hover .AccordionItem--button--icon::before, .AccordionItem--button:hover .AccordionItem--button--icon::after, .AccordionItem--button:focus[aria-expanded=false] .AccordionItem--button--icon::before, .AccordionItem--button:focus[aria-expanded=false] .AccordionItem--button--icon::after {
  transform: rotate(90deg);
}

.AccordionItem--button--icon {
  height: 20px;
  width: 20px;
  display: block;
  position: relative;
  float: right;
  transition: transform 150ms ease-in-out;
  margin-right: 21px;
}
@media (max-width: 740px) {
  .AccordionItem--button--icon {
    margin-right: 0;
  }
}
.AccordionItem--button--icon::after, .AccordionItem--button--icon::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #005288;
  transition: transform 150ms, opacity 150ms;
}
.AccordionItem--button--icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  margin-top: -1px;
}
.AccordionItem--button--icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  margin-left: -1px;
}

.ActionItem--content {
  display: none;
}
.ActionItem--content[data-hidden=false] {
  display: block;
}
@media print {
  .ActionItem--content {
    display: block;
  }
}

.AccordionItem--content--inner {
  margin-bottom: 40px;
}
.AccordionItem--content--inner > * {
  max-width: 100%;
}
.AccordionItem--content--inner > *:first-child {
  margin-top: 0;
}
.AccordionItem--content--inner > *:last-child {
  margin-bottom: 0;
}
@media print {
  .AccordionItem--content--inner {
    margin-bottom: 0;
  }
}
.AccordionItem--content--inner .richtext p {
  color: #737273;
}

.AgendaWrapper:not(.inline) {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
}
@media (max-width: 740px) {
  .AgendaWrapper:not(.inline) {
    grid-template-columns: repeat(4, 1fr);
  }
}
.AgendaWrapper:not(.inline) .Agenda {
  grid-column: 3/span 8;
}
@media (max-width: 900px) {
  .AgendaWrapper:not(.inline) .Agenda {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .AgendaWrapper:not(.inline) .Agenda {
    grid-column: 1/span 4;
  }
}
@media (max-width: 1150px) {
  .AgendaWrapper:not(.inline) .Agenda {
    grid-column: 2/span 10;
  }
}
@media (max-width: 1150px) and (max-width: 900px) {
  .AgendaWrapper:not(.inline) .Agenda {
    grid-column: 1/span 12;
  }
}
@media (max-width: 1150px) and (max-width: 740px) {
  .AgendaWrapper:not(.inline) .Agenda {
    grid-column: 1/span 4;
  }
}

.Agenda {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .Agenda {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .Agenda {
    margin-bottom: 60px;
  }
}
.Agenda[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .Agenda[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .Agenda[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.Agenda[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .Agenda[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .Agenda[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.Agenda[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .Agenda[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .Agenda[data-component-gap=small] {
    margin-bottom: 20px;
  }
}

.AgendaGrid {
  padding-top: 160px;
  padding-bottom: 160px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #F6FBFE;
  border-radius: 8px;
  transition: background-color 200ms ease-in-out;
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 24px;
}
@media (max-width: 1150px) {
  .AgendaGrid {
    padding-top: 100px;
  }
}
@media (max-width: 900px) {
  .AgendaGrid {
    padding-top: 60px;
  }
}
@media (max-width: 1150px) {
  .AgendaGrid {
    padding-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .AgendaGrid {
    padding-bottom: 60px;
  }
}
@media (max-width: 1150px) {
  .AgendaGrid {
    padding-left: 30px;
  }
}
@media (max-width: 900px) {
  .AgendaGrid {
    padding-left: 20px;
  }
}
@media (max-width: 1150px) {
  .AgendaGrid {
    padding-right: 30px;
  }
}
@media (max-width: 900px) {
  .AgendaGrid {
    padding-right: 20px;
  }
}
@media (max-width: 740px) {
  .AgendaGrid {
    display: block;
    padding: 80px;
  }
}
@media (max-width: 740px) and (max-width: 1150px) {
  .AgendaGrid {
    padding: 60px;
  }
}
@media (max-width: 740px) and (max-width: 900px) {
  .AgendaGrid {
    padding: 40px;
  }
}
.AgendaGrid + .AgendaGrid {
  margin-top: 20px;
}
@media (max-width: 1150px) {
  .AgendaGrid + .AgendaGrid {
    margin-top: 15px;
  }
}
@media (max-width: 900px) {
  .AgendaGrid + .AgendaGrid {
    margin-top: 10px;
  }
}
.AgendaGrid:hover {
  background-color: #e8f7fd;
}

@media (max-width: 740px) {
  .AgendaGrid--left {
    margin-bottom: 40px;
  }
}
@media (max-width: 740px) and (max-width: 1150px) {
  .AgendaGrid--left {
    margin-bottom: 30px;
  }
}
@media (max-width: 740px) and (max-width: 900px) {
  .AgendaGrid--left {
    margin-bottom: 20px;
  }
}

.Agenda--time {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #005288;
}

.Agenda--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 1em;
}
@media (max-width: 740px) {
  .Agenda--title {
    font-size: 18px;
  }
}
.Agenda--title:last-child {
  margin-bottom: 0;
}

.Agenda--text {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .Agenda--text {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .Agenda--text {
    margin-bottom: 20px;
  }
}

.Agenda--details {
  display: grid;
  grid-template-columns: 140px auto;
}
@media (min-width: 741px) {
  .Agenda--details {
    grid-template-columns: 200px auto;
  }
}

.Agenda--details--label {
  margin-bottom: 40px;
  color: #999999;
}
@media (max-width: 1150px) {
  .Agenda--details--label {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .Agenda--details--label {
    margin-bottom: 20px;
  }
}

.ArticleImage:not(.inline) {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 160px;
}
@media (max-width: 740px) {
  .ArticleImage:not(.inline) {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .ArticleImage:not(.inline) {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .ArticleImage:not(.inline) {
    margin-bottom: 60px;
  }
}
.ArticleImage:not(.inline)[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .ArticleImage:not(.inline)[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .ArticleImage:not(.inline)[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.ArticleImage:not(.inline)[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .ArticleImage:not(.inline)[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .ArticleImage:not(.inline)[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.ArticleImage:not(.inline)[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .ArticleImage:not(.inline)[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .ArticleImage:not(.inline)[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
.ArticleImage:not(.inline) .ArticleImage--body {
  grid-column: 1/span 12;
}
@media (max-width: 900px) {
  .ArticleImage:not(.inline) .ArticleImage--body {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .ArticleImage:not(.inline) .ArticleImage--body {
    grid-column: 1/span 4;
  }
}
.ArticleImage:not(.inline)[data-size=large i] .ArticleImage--body {
  grid-column: 2/span 10;
}
@media (max-width: 900px) {
  .ArticleImage:not(.inline)[data-size=large i] .ArticleImage--body {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .ArticleImage:not(.inline)[data-size=large i] .ArticleImage--body {
    grid-column: 1/span 4;
  }
}
.ArticleImage:not(.inline)[data-size=medium i] .ArticleImage--body {
  grid-column: 3/span 8;
}
@media (max-width: 900px) {
  .ArticleImage:not(.inline)[data-size=medium i] .ArticleImage--body {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .ArticleImage:not(.inline)[data-size=medium i] .ArticleImage--body {
    grid-column: 1/span 4;
  }
}
.ArticleImage[data-height-flexible] .Picture {
  border-radius: 0;
}

.ArticleImage--caption {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #737273;
  margin-top: 15px;
}
@media (max-width: 740px) {
  .ArticleImage--caption {
    font-size: 14px;
  }
}

.BrowserAlert {
  display: none;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .BrowserAlert {
    display: block;
  }
}

.BrowserAlert--container {
  border: 2px solid #e30613;
  border-radius: 12px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.06), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  color: #e30613;
  padding: 40px;
  margin-bottom: 40px;
  margin-top: 5px;
}

.BrowserAlert--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 1em;
}
@media (max-width: 740px) {
  .BrowserAlert--title {
    font-size: 18px;
  }
}

.Card {
  width: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.06), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
}

.Card--content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 900px) {
  .Card--content {
    padding: 30px;
  }
}
@media (max-width: 740px) {
  .Card--content {
    padding: 24px;
  }
}

.Card--header {
  flex-grow: 1;
}

.Card--inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
}

.Card--title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
@media (max-width: 1150px) {
  .Card--title {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .Card--title {
    font-size: 24px;
  }
}
.Card--title:not(.no-hyphenate) {
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (max-width: 740px) {
  .Card--title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 18px;
  }
}
@media (max-width: 740px) and (max-width: 740px) {
  .Card--title {
    font-size: 18px;
  }
}

.Card--text {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #737273;
  margin-bottom: 40px;
}
@media (max-width: 740px) {
  .Card--text {
    font-size: 16px;
  }
}
@media (max-width: 740px) {
  .Card--text {
    margin-bottom: 48px;
  }
}

.Card--links {
  height: 60px;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .Card--links {
    height: 48px;
  }
}

.Card--button {
  margin-right: 24px;
}

.Card--link {
  display: inline-block;
}
@media (min-width: 901px) {
  .Card--link {
    margin-top: 7px;
  }
}
.Card--link .Button.link.blue {
  display: flex;
}

.Card--image {
  position: relative;
}
.Card--image .Picture {
  width: 100%;
  padding-top: 67% !important;
  border-radius: 0;
}

.CardFilter {
  padding: 32px 0;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 120px 80px;
  gap: 24px;
  border-bottom: 1px solid #bfbfbf;
}
@media (max-width: 900px) {
  .CardFilter {
    padding: 16px 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}

@media (max-width: 900px) {
  .CardFilter--content {
    grid-column: 1/span 2;
  }
}

.CardFilter--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media (max-width: 740px) {
  .CardFilter--title {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .CardFilter--title {
    font-size: 16px;
  }
}

.CardFilter--details {
  color: #737273;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.14px;
  display: flex;
  gap: 40px;
}
@media (max-width: 900px) {
  .CardFilter--details {
    gap: 24px;
  }
}
@media (max-width: 740px) {
  .CardFilter--details {
    flex-direction: column;
    gap: 8px;
  }
}

.CardFilter--detail--key {
  color: #737273;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.14px;
  white-space: nowrap;
}

.CardFilter--inputField {
  width: 130px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.CardFilter--input--element {
  margin-bottom: 0;
}

.CardFilter--input {
  padding-right: 52px;
  margin-top: 0;
}

.CardFilter--input--inner {
  position: relative;
}

.CardFilter--input--suffix {
  color: #737273;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.14px;
  flex-grow: 1;
  flex-shrink: 0;
}

.CardFilter--price {
  text-align: end;
}

.CardFilterGrid {
  margin-bottom: 80px;
}
@media (max-width: 740px) {
  .CardFilterGrid {
    margin-bottom: 62px;
  }
}
.CardFilterGrid + .CardFilterGrid--footer {
  margin-top: -80px;
}
@media (max-width: 740px) {
  .CardFilterGrid + .CardFilterGrid--footer {
    margin-top: -62px;
  }
}
.CardFilterGrid .CardFilter:first-of-type {
  border-top: 1px solid #bfbfbf;
}

.CardFilterGrid--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media (max-width: 740px) {
  .CardFilterGrid--title {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .CardFilterGrid--title {
    margin-bottom: 16px;
  }
}

.CardFilterGrid--brandPrice-label {
  font-weight: 500;
  grid-area: label;
  justify-self: flex-end;
}

.CardFilterGrid--brandPrice-subtotal {
  grid-area: subtotal;
}

.CardFilterGrid--footer {
  margin-bottom: 40px;
  padding: 24px 0;
  border-bottom: 1px solid #bfbfbf;
}

.CardFilterGrid--total {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  grid-area: label;
  text-align: end;
}
@media (max-width: 740px) {
  .CardFilterGrid--total {
    font-size: 18px;
  }
}

.CardFilterGrid--vat-info {
  color: #737273;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.14px;
  grid-area: vat;
  text-align: end;
}

.CardNumber {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.CardNumber--number {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 0.25em;
  color: #005288;
}
@media (max-width: 1150px) {
  .CardNumber--number {
    font-size: 44px;
  }
}
@media (max-width: 740px) {
  .CardNumber--number {
    font-size: 36px;
    line-height: 1.2;
  }
}

.CardNumber--title {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}
@media (max-width: 740px) {
  .CardNumber--title {
    font-size: 14px;
  }
}

.CardNumber--text {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #737273;
}
@media (max-width: 740px) {
  .CardNumber--text {
    font-size: 14px;
  }
}

.CardNumber--content {
  max-width: 300px;
}

.CardNumberGrid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 160px;
}
@media (max-width: 740px) {
  .CardNumberGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .CardNumberGrid {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .CardNumberGrid {
    margin-bottom: 60px;
  }
}
.CardNumberGrid[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .CardNumberGrid[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .CardNumberGrid[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.CardNumberGrid[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .CardNumberGrid[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .CardNumberGrid[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.CardNumberGrid[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .CardNumberGrid[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .CardNumberGrid[data-component-gap=small] {
    margin-bottom: 20px;
  }
}

.CardNumberGrid--container {
  grid-column: 1/span 12;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  -moz-column-gap: 16px;
  column-gap: 16px;
  row-gap: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 900px) {
  .CardNumberGrid--container {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .CardNumberGrid--container {
    grid-column: 1/span 4;
  }
}
@media (max-width: 900px) {
  .CardNumberGrid--container {
    grid-template-columns: repeat(auto-fit, minmax(326px, 1fr));
  }
}
@media (max-width: 740px) {
  .CardNumberGrid--container {
    gap: 40px;
    padding-top: 24px;
  }
}

.CardProduct {
  padding: 40px 0;
  display: grid;
  grid-template-columns: 144px 1fr auto;
  gap: 24px;
  border-bottom: 1px solid #bfbfbf;
}
@media (max-width: 740px) {
  .CardProduct {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 32px 0;
  }
}
.CardProduct:first-of-type {
  border-top: 1px solid #bfbfbf;
}

.CardProduct--image .Picture {
  width: 144px;
  height: 144px;
  padding-top: 0 !important;
}

.CardProduct--content .CardProduct--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 1em;
  color: #005288;
}
@media (max-width: 740px) {
  .CardProduct--content .CardProduct--title {
    font-size: 18px;
  }
}
.CardProduct--content .contentful-richtext {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 740px) {
  .CardProduct--content .contentful-richtext {
    font-size: 14px;
  }
}
.CardProduct--content .contentful-richtext:last-child {
  margin-bottom: 0;
}

.CardProduct--checkbox label {
  font-weight: 500;
}

.CardProductGrid {
  margin-bottom: 80px;
}
@media (max-width: 740px) {
  .CardProductGrid {
    margin-bottom: 62px;
  }
}

.CardProductGrid--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 1em;
}
@media (max-width: 740px) {
  .CardProductGrid--title {
    font-size: 18px;
  }
}

.ContactForm {
  padding-left: 25%;
  padding-right: 25%;
}
@media (max-width: 1150px) {
  .ContactForm {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media (max-width: 740px) {
  .ContactForm {
    padding: 0;
  }
}

.ContactForm--title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 49px;
}
@media (max-width: 1150px) {
  .ContactForm--title {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .ContactForm--title {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .ContactForm--title {
    margin-bottom: 32px;
  }
}

.ContactForm--form:not(.is-visible) {
  display: none;
}

.FactSlide--image {
  margin-bottom: 20px;
}
[data-image-size=small] .FactSlide--image {
  width: 58px;
}
[data-image-size=medium] .FactSlide--image {
  width: 180px;
}
[data-image-size=large] .FactSlide--image {
  width: 300px;
}

.FactSlide--title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 0.75ex;
}
@media (max-width: 1150px) {
  .FactSlide--title {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .FactSlide--title {
    font-size: 24px;
  }
}

.FactSlide--value {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  color: #005288;
  margin-bottom: 0.75ex;
}
@media (max-width: 1150px) {
  .FactSlide--value {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .FactSlide--value {
    font-size: 24px;
  }
}

.FactSlide--text {
  color: #767676;
}

.FactSlider {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 160px;
  max-width: unset;
  margin-top: -40px;
}
@media (max-width: 740px) {
  .FactSlider {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .FactSlider {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .FactSlider {
    margin-bottom: 60px;
  }
}
.FactSlider[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .FactSlider[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .FactSlider[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.FactSlider[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .FactSlider[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .FactSlider[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.FactSlider[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .FactSlider[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .FactSlider[data-component-gap=small] {
    margin-bottom: 20px;
  }
}

.FactSlider--container {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -webkit-grab;
  /* (Optional) Apply a "closed-hand" cursor during drag operation. */
  grid-column: 1/span 12;
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 40px;
  margin-bottom: 40px;
}
.FactSlider--container:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
@media (max-width: 900px) {
  .FactSlider--container {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .FactSlider--container {
    grid-column: 1/span 4;
  }
}
@media (max-width: 740px) {
  .FactSlider--container {
    margin-bottom: 32px;
    margin-left: 0;
  }
}
.FactSlider--container:active {
  cursor: grabbing;
}

.FactSlider--wrapper {
  display: flex;
  height: 100%;
  transform: translate3d(0px, 0, 0);
}

.FactSlider--slide {
  position: relative;
  z-index: 30;
  width: 300px;
  max-width: calc(100% - 50px);
  min-height: 100%;
  flex: 1 0 auto;
  align-items: stretch;
  margin-right: 50px;
  will-change: transform;
  display: grid;
}
@media (max-width: 1150px) {
  .FactSlider--slide {
    width: 42%;
  }
}
@media (max-width: 580px) {
  .FactSlider--slide {
    width: 80%;
    margin-right: 25px;
  }
}

.FactSlider .flickity-page-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.FactSlider .flickity-page-dots.is-hidden {
  display: none;
}
.FactSlider .flickity-page-dots > li {
  margin-right: 8px;
  background-color: #e5e5e5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.FactSlider .flickity-page-dots > li.is-selected {
  background-color: #005288;
}
.FactSlider .flickity-page-dots > li:last-of-type {
  margin-right: 0;
}

.FactSlider--cta {
  display: flex;
  justify-content: center;
}

.IFrame--wrapper {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
}
@media (max-width: 740px) {
  .IFrame--wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.IFrame--inner {
  grid-column: 3/span 8;
}
@media (max-width: 900px) {
  .IFrame--inner {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .IFrame--inner {
    grid-column: 1/span 4;
  }
}

.IFrame {
  margin-bottom: 160px;
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1150px) {
  .IFrame {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .IFrame {
    margin-bottom: 60px;
  }
}
.IFrame[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .IFrame[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .IFrame[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.IFrame[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .IFrame[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .IFrame[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.IFrame[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .IFrame[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .IFrame[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
.IFrame:not(.autoresize) iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.IFrame iframe {
  width: 100%;
}

.IconCard {
  display: flex;
  padding: 20px;
}
@media (max-width: 740px) {
  .IconCard {
    align-items: center;
    padding: 0;
    margin-bottom: 19px;
    flex-direction: row;
    width: 100%;
  }
}

.IconCard--icon {
  display: flex;
}
@media (max-width: 740px) {
  .IconCard--icon {
    margin-right: 14px;
    margin-bottom: 0;
    align-self: flex-start;
  }
}
.IconCard--icon .Icon,
.IconCard--icon .Graphic {
  height: 58px;
  width: 58px;
  color: #005288;
}
@media (max-width: 740px) {
  .IconCard--icon .Icon,
  .IconCard--icon .Graphic {
    height: 40px;
    width: 40px;
  }
}

.IconCard--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (max-width: 740px) {
  .IconCard--title {
    font-size: 18px;
  }
}
@media (min-width: 741px) {
  .IconCard--title {
    margin-bottom: 24px;
  }
}

.IconCard--text {
  color: #737273;
}

.IconList {
  margin-bottom: 160px;
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
}
@media (max-width: 1150px) {
  .IconList {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .IconList {
    margin-bottom: 60px;
  }
}
.IconList[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .IconList[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .IconList[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.IconList[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .IconList[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .IconList[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.IconList[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .IconList[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .IconList[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
@media (max-width: 740px) {
  .IconList {
    grid-template-columns: repeat(4, 1fr);
  }
}
.IconList[data-variant=grid] {
  max-width: unset;
}

.IconList--inner {
  grid-column: 3/span 8;
}
@media (max-width: 900px) {
  .IconList--inner {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .IconList--inner {
    grid-column: 1/span 4;
  }
}
@media (max-width: 1150px) {
  .IconList--inner {
    grid-column: 2/span 10;
  }
}
@media (max-width: 1150px) and (max-width: 900px) {
  .IconList--inner {
    grid-column: 1/span 12;
  }
}
@media (max-width: 1150px) and (max-width: 740px) {
  .IconList--inner {
    grid-column: 1/span 4;
  }
}
[data-variant=grid] .IconList--inner {
  grid-column: 1/span 12;
}
@media (max-width: 900px) {
  [data-variant=grid] .IconList--inner {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  [data-variant=grid] .IconList--inner {
    grid-column: 1/span 4;
  }
}
@media (min-width: 1440px) {
  [data-variant=grid] .IconList--inner {
    grid-column: 2/span 10;
  }
}
@media (min-width: 1440px) and (max-width: 900px) {
  [data-variant=grid] .IconList--inner {
    grid-column: 1/span 12;
  }
}
@media (min-width: 1440px) and (max-width: 740px) {
  [data-variant=grid] .IconList--inner {
    grid-column: 1/span 4;
  }
}

@media (max-width: 740px) {
  .IconList--container {
    margin-bottom: 24px;
    padding: 0;
  }
}
@media (min-width: 741px) {
  .IconList--container .IconCard--icon {
    margin-right: 27px;
  }
  .IconList--container .IconCard--title {
    margin-bottom: 16px;
  }
}
@media (min-width: 741px) {
  [data-variant=list][data-amount="1"] .IconList--container {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 741px) {
  [data-variant=list][data-amount="1"] .IconList--container {
    margin-bottom: 40px;
  }
  [data-variant=list][data-amount="1"] .IconList--container .IconCard--icon {
    margin-bottom: 30px;
  }
  [data-variant=list][data-amount="1"] .IconList--container .IconCard {
    flex-direction: column;
    align-items: center;
    width: 30%;
    text-align: center;
  }
}
@media (min-width: 741px) {
  [data-variant=list][data-amount="2"] .IconList--container {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 741px) {
  [data-variant=list][data-amount="2"] .IconList--container {
    margin-bottom: 40px;
  }
  [data-variant=list][data-amount="2"] .IconList--container .IconCard--icon {
    margin-bottom: 30px;
  }
  [data-variant=list][data-amount="2"] .IconList--container .IconCard {
    flex-direction: column;
    align-items: center;
    width: 30%;
    text-align: center;
  }
}
@media (min-width: 741px) {
  [data-variant=list][data-amount="3"] .IconList--container {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 741px) {
  [data-variant=list][data-amount="3"] .IconList--container {
    margin-bottom: 40px;
  }
  [data-variant=list][data-amount="3"] .IconList--container .IconCard--icon {
    margin-bottom: 30px;
  }
  [data-variant=list][data-amount="3"] .IconList--container .IconCard {
    flex-direction: column;
    align-items: center;
    width: 30%;
    text-align: center;
  }
}
[data-variant=grid] .IconList--container {
  padding: 0;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 740px) {
  [data-variant=grid] .IconList--container {
    grid-template-columns: 1fr;
  }
}
[data-variant=grid] .IconList--container .IconCard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
}
[data-variant=grid] .IconList--container .IconCard .IconCard--text {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 740px) {
  [data-variant=grid] .IconList--container .IconCard .IconCard--text {
    font-size: 14px;
  }
}
[data-variant=grid] .IconList--container .IconCard .Icon,
[data-variant=grid] .IconList--container .IconCard .Graphic {
  width: auto;
  height: 80px;
}
@media (min-width: 901px) {
  [data-variant=grid][data-amount="1"] .IconList--container, [data-variant=grid][data-amount="2"] .IconList--container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}
@media (min-width: 901px) {
  [data-variant=grid][data-amount="1"] .IconList--container .IconCard, [data-variant=grid][data-amount="2"] .IconList--container .IconCard {
    min-width: 240px;
    max-width: 440px;
    width: 30%;
  }
}
[data-variant=grid][data-amount="1"] .IconList--container .IconCard .IconCard--text, [data-variant=grid][data-amount="2"] .IconList--container .IconCard .IconCard--text {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 740px) {
  [data-variant=grid][data-amount="1"] .IconList--container .IconCard .IconCard--text, [data-variant=grid][data-amount="2"] .IconList--container .IconCard .IconCard--text {
    font-size: 14px;
  }
}

@media (min-width: 741px) {
  .IconList--cta {
    text-align: center;
  }
}

.ImageLegendWrapper {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
}
@media (max-width: 740px) {
  .ImageLegendWrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ImageLegend {
  grid-column: 3/span 8;
  margin-bottom: 160px;
}
@media (max-width: 900px) {
  .ImageLegend {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .ImageLegend {
    grid-column: 1/span 4;
  }
}
@media (max-width: 1150px) {
  .ImageLegend {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .ImageLegend {
    margin-bottom: 60px;
  }
}
.ImageLegend[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .ImageLegend[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .ImageLegend[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.ImageLegend[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .ImageLegend[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .ImageLegend[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.ImageLegend[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .ImageLegend[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .ImageLegend[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
.ImageLegend[data-image-size=small] .ImageLegend--image {
  flex-grow: 0;
  width: 180px;
}
.Accordion .ImageLegend {
  grid-column: 1/span 12;
}
@media (max-width: 900px) {
  .Accordion .ImageLegend {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .Accordion .ImageLegend {
    grid-column: 1/span 4;
  }
}

.ImageLegend--body {
  display: flex;
  width: 100%;
}
.ImageLegend--body > * {
  width: 50%;
}
@media (max-width: 580px) {
  .ImageLegend--body > * {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .ImageLegend--body {
    display: block;
  }
}

.ImageLegend--legend {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  flex-grow: 1;
  display: flex;
  padding-left: 40px;
  justify-content: flex-end;
  flex-direction: column;
}
@media (max-width: 740px) {
  .ImageLegend--legend {
    font-size: 14px;
  }
}
[data-with-title] .ImageLegend--legend {
  justify-content: flex-start;
}
@media (max-width: 580px) {
  .ImageLegend--legend {
    display: block;
    padding-left: 0;
    margin-top: 20px;
  }
}

.ImageLegend--title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 0.75em;
}
@media (max-width: 1150px) {
  .ImageLegend--title {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .ImageLegend--title {
    font-size: 24px;
  }
}

.ImageLegend--legend .richtext li {
  margin-bottom: 0;
}
.ImageLegend--legend .richtext p {
  color: #767676;
}
.ImageLegend--legend .richtext p + p {
  margin-top: 1em;
}
.ImageLegend--legend .richtext *:first-child {
  margin-top: 0;
}
.ImageLegend--legend .richtext *:last-child {
  margin-bottom: 0;
}
.ImageLegend--legend .richtext br + a:not([class]) {
  margin-top: 0em;
}

.ImageSlider {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  margin-bottom: 120px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
}
@media (max-width: 740px) {
  .ImageSlider {
    margin-bottom: 80px;
  }
}
@media (max-width: 740px) {
  .ImageSlider {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ImageSlider--slider {
  grid-column: 2/span 10;
  position: relative;
}
@media (max-width: 900px) {
  .ImageSlider--slider {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .ImageSlider--slider {
    grid-column: 1/span 4;
  }
}
[data-size=medium i] .ImageSlider--slider {
  grid-column: 3/span 8;
}
@media (max-width: 900px) {
  [data-size=medium i] .ImageSlider--slider {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  [data-size=medium i] .ImageSlider--slider {
    grid-column: 1/span 4;
  }
}

.ImageSlider--viewport {
  overflow: hidden;
}

.ImageSlider--wrapper {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}
.ImageSlider--wrapper > li {
  display: block;
  vertical-align: top;
  flex: 0 0 auto;
  width: 100%;
  width: calc((100% + 20px) / 1 - 20px);
  margin-right: 20px;
}
.ImageSlider--wrapper > li.is-slider-ready {
  visibility: hidden;
}
.ImageSlider--wrapper > li.was-visible, .ImageSlider--wrapper > li.is-visible {
  visibility: visible;
}

.ImageSlider .flickity-page-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.ImageSlider .flickity-page-dots.is-hidden {
  display: none;
}
.ImageSlider .flickity-page-dots > li {
  margin-right: 8px;
  background-color: #e5e5e5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.ImageSlider .flickity-page-dots > li.is-selected {
  background-color: #005288;
}
.ImageSlider .flickity-page-dots > li:last-of-type {
  margin-right: 0;
}
.ImageSlider .flickity-prev-next-button {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  margin-top: -32px;
  top: 50%;
}
.ImageSlider .flickity-prev-next-button[disabled] {
  opacity: 0;
}
@media (max-width: 1150px) {
  .ImageSlider .flickity-prev-next-button {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
}
.ImageSlider .flickity-prev-next-button.previous {
  left: -90px;
}
.ImageSlider .flickity-prev-next-button.previous::before {
  margin-left: -5px;
  transform: rotate(45deg);
}
.ImageSlider .flickity-prev-next-button.next {
  right: -90px;
}
.ImageSlider .flickity-prev-next-button.next::before {
  margin-left: -8px;
  transform: rotate(225deg);
}

.IntroOverlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 50;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.IntroOverlay .IntroOverlay--container {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.IntroOverlay:not(.is-open) {
  opacity: 0;
  visibility: hidden;
}
.IntroOverlay:not(.is-open) .IntroOverlay--container {
  transform: translateY(-100px);
}
.IntroOverlay.is-closed {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.IntroOverlay.is-closed .IntroOverlay--container {
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.IntroOverlay::before {
  content: " ";
  background-color: red;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.IntroOverlay--container {
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.IntroOverlay--body {
  position: relative;
  padding: 40px;
  background-color: #ffffff;
  max-height: 80vh;
  overflow: auto;
}
.IntroOverlay--body .richtext p {
  color: #737273;
}
.IntroOverlay--body [data-component=link] {
  margin-top: 0;
}
.IntroOverlay--body .Button {
  display: flex;
  justify-content: center;
}
@media (max-width: 740px) {
  .IntroOverlay--body {
    padding: 24px;
  }
}

.IntroOverlay--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 740px) {
  .IntroOverlay--title {
    font-size: 18px;
  }
}

.IntroOverlay--links .Button.after {
  border: unset;
  background-color: rgba(0, 0, 0, 0.02);
  flex: 1;
}
.IntroOverlay--links .Button.after:hover {
  background-color: #f2f2f2;
}
.IntroOverlay--links .Button.after + .Button.after {
  margin-top: 8px;
}

html.is-introOverlay-open {
  overflow: hidden;
}

.Klimafoerderrechner {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .Klimafoerderrechner {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .Klimafoerderrechner {
    margin-bottom: 60px;
  }
}
@media (max-width: 580px) {
  .Klimafoerderrechner {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.Klimafoerderrechner--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 0.5em;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 740px) {
  .Klimafoerderrechner--title {
    font-size: 18px;
  }
}

.LogoCarousel {
  margin-bottom: 160px;
  --group-width: 100%;
  display: flex;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1150px) {
  .LogoCarousel {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .LogoCarousel {
    margin-bottom: 60px;
  }
}
.LogoCarousel[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .LogoCarousel[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .LogoCarousel[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.LogoCarousel[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .LogoCarousel[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .LogoCarousel[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.LogoCarousel[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .LogoCarousel[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .LogoCarousel[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
.LogoCarousel.animate .LogoCarousel--logos {
  animation: LogoCarousel-loop calc(var(--logo-amount) * 2s) linear infinite;
}

.LogoCarousel--logos {
  display: flex;
  will-change: transform;
}

.LogoCarousel--logo {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 40px;
  text-align: center;
  width: fit-content;
}
.LogoCarousel--logo .Graphic {
  height: 80px;
  width: auto;
}

@keyframes LogoCarousel-loop {
  0% {
    will-change: transform;
    transform: translateX(0%);
  }
  100% {
    will-change: transform;
    transform: translateX(-100%);
  }
}
.Notification {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 40px;
}
@media (max-width: 740px) {
  .Notification {
    font-size: 14px;
  }
}
.Notification > .Icon {
  flex: 0 0 auto;
  margin-right: 30px;
  color: #005288;
  width: 60px;
  height: 60px;
}
@media (max-width: 580px) {
  .Notification {
    padding: 20px;
  }
  .Notification > .Icon {
    width: 30px;
    height: 30px;
    margin-right: 20px;
  }
}

.Notification.Vue {
  align-items: flex-start;
  padding: 24px;
}
.Notification.Vue > .Icon {
  margin-top: 2px;
  width: 26px;
  height: 26px;
}
.Notification.Vue .richtext p:last-child {
  margin-bottom: 0;
}

.OutlineTeaserWrapper {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 160px;
}
@media (max-width: 740px) {
  .OutlineTeaserWrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .OutlineTeaserWrapper {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .OutlineTeaserWrapper {
    margin-bottom: 60px;
  }
}
.OutlineTeaserWrapper[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .OutlineTeaserWrapper[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .OutlineTeaserWrapper[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.OutlineTeaserWrapper[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .OutlineTeaserWrapper[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .OutlineTeaserWrapper[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.OutlineTeaserWrapper[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .OutlineTeaserWrapper[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .OutlineTeaserWrapper[data-component-gap=small] {
    margin-bottom: 20px;
  }
}

.OutlineTeaser {
  grid-column: 2/span 10;
  border: 1px solid #bfbfbf;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .OutlineTeaser {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .OutlineTeaser {
    grid-column: 1/span 4;
  }
}

.OutlineTeaser--inner {
  padding: 56px 56px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "header header" "richtext content";
}
@media (max-width: 740px) {
  .OutlineTeaser--inner {
    padding: 40px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "header" "richtext" "content";
  }
}

.OutlineTeaser--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 1.5em;
  grid-area: header;
  text-align: center;
}
@media (max-width: 740px) {
  .OutlineTeaser--title {
    font-size: 18px;
  }
}

.OutlineTeaser--richtext {
  position: relative;
  grid-area: richtext;
  padding: 18px 48px 56px 0;
  color: #000000;
}
.OutlineTeaser--richtext p {
  font-weight: 400 !important;
  margin-bottom: 1em !important;
}
.OutlineTeaser--richtext::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: #bfbfbf;
}
.OutlineTeaser--richtext > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 740px) {
  .OutlineTeaser--richtext {
    padding: 0 0 40px;
    text-align: center;
  }
  .OutlineTeaser--richtext::after {
    height: 1px;
    width: 100%;
    top: unset;
    left: 0;
    bottom: 0;
  }
}

.OutlineTeaser--content {
  padding: 18px 0 56px 48px;
  grid-area: content;
}
@media (max-width: 740px) {
  .OutlineTeaser--content {
    padding: 40px 0 0;
    text-align: center;
  }
}

.OutlineTeaser--text {
  color: #737273;
  margin-bottom: 1em;
}

body.has-overlay {
  overflow: hidden !important;
}

.Overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.Overlay--background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.4s linear;
}
.Overlay:not([data-expanded=true]) > .Overlay--background {
  visibility: hidden;
  opacity: 0;
}

.Overlay--page {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: white;
  overflow: auto;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.Overlay:not([data-expanded]) > .Overlay--page {
  visibility: hidden;
  transform: scale(0.5);
  opacity: 0;
}
.Overlay.is-collapsed > .Overlay--page {
  overflow: hidden;
  visibility: hidden;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.Overlay--content {
  transition: all 0.4s 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.Overlay.is-loading .Overlay--content {
  visibility: hidden;
  opacity: 0;
}

.Overlay--content--inner {
  flex: 1;
  overflow: auto;
  position: relative;
}

.Overlay--close {
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 10px;
  width: 80px;
  height: 80px;
}
.Overlay--close:before, .Overlay--close:after {
  content: "";
  position: absolute;
  border-top: 1px solid;
  top: 50%;
  left: 5px;
  right: 5px;
  transform: rotate(45deg);
}
.Overlay--close:after {
  transform: rotate(-45deg);
}

.Button.Overlay--btn {
  padding: 8px;
  display: flex;
  gap: 8px;
}
@media (max-width: 740px) {
  .Button.Overlay--btn {
    gap: 20px;
    padding: 24px 20px;
    align-self: stretch;
    box-shadow: 0px 8px 48px -8px rgba(0, 0, 0, 0.1);
  }
}

.Overlay--btn--text {
  max-width: 30ch;
  line-height: 1.2;
  text-overflow: ellipsis;
}

.OverlayNav {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  align-self: flex-end;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 40px;
}
@media (max-width: 740px) {
  .OverlayNav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-tempalte-rows: auto auto;
    grid-template-areas: "nav nav" "prev next";
    row-gap: 23px;
    background-color: #ffffff;
    padding-top: 24px;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 740px) {
  .Overlay--content--inner {
    padding-bottom: 130px;
  }
}
.OverlayNav--dots {
  display: flex;
  justify-content: center;
}
.OverlayNav--dots.is-hidden {
  display: none;
}
.OverlayNav--dots > li {
  margin-right: 8px;
  background-color: #e5e5e5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.OverlayNav--dots > li.is-selected {
  background-color: #005288;
}
.OverlayNav--dots > li:last-of-type {
  margin-right: 0;
}
@media (max-width: 740px) {
  .OverlayNav--dots {
    grid-area: nav;
  }
}

.OverlayNav--dot {
  height: 6px;
  width: 6px;
}
.OverlayNav--dot.active {
  background-color: #2FB4E9;
}

@media (max-width: 740px) {
  .Overlay--btn.next {
    justify-content: flex-end;
    border-left: 1px solid #cccccc;
  }
}

.OverlayPage {
  flex: 1;
  padding-top: calc(var(--site-header--height) + 24px);
}

.OverlayPage--content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
}
@media (max-width: 740px) {
  .OverlayPage--content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.OverlayPage--title {
  font-weight: 500;
  font-size: 54px;
  line-height: 1.1;
  grid-column: 3/span 8;
  margin-bottom: 1em;
}
@media (max-width: 1150px) {
  .OverlayPage--title {
    font-size: 40px;
  }
}
@media (max-width: 740px) {
  .OverlayPage--title {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media (max-width: 580px) {
  .OverlayPage--title {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
@media (max-width: 900px) {
  .OverlayPage--title {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .OverlayPage--title {
    grid-column: 1/span 4;
  }
}
@media (max-width: 1150px) {
  .OverlayPage--title {
    grid-column: 2/span 10;
  }
}
@media (max-width: 1150px) and (max-width: 900px) {
  .OverlayPage--title {
    grid-column: 1/span 12;
  }
}
@media (max-width: 1150px) and (max-width: 740px) {
  .OverlayPage--title {
    grid-column: 1/span 4;
  }
}

.OverlayPage--text {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #737273;
  grid-column: 3/span 8;
  margin-bottom: 20px;
}
@media (max-width: 740px) {
  .OverlayPage--text {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .OverlayPage--text {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .OverlayPage--text {
    grid-column: 1/span 4;
  }
}
@media (max-width: 1150px) {
  .OverlayPage--text {
    grid-column: 2/span 10;
  }
}
@media (max-width: 1150px) and (max-width: 900px) {
  .OverlayPage--text {
    grid-column: 1/span 12;
  }
}
@media (max-width: 1150px) and (max-width: 740px) {
  .OverlayPage--text {
    grid-column: 1/span 4;
  }
}
@media (max-width: 740px) {
  .OverlayPage--text {
    font-size: 14px;
  }
}

.ProductCard {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.06), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  background: #ffffff;
}

.ProductCard--image {
  margin: 0 auto;
  width: 100%;
  padding: 14px 0;
  height: 150px;
  width: 150px;
}
.ProductCard--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.ProductCard--content {
  padding: 16px 24px 32px 24px;
  min-height: 220px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45em;
}

.ProductCard--preTitle {
  font-weight: 500;
}

.ProductCard--title {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #737273;
  flex-grow: 1;
}
@media (max-width: 740px) {
  .ProductCard--title {
    font-size: 14px;
  }
}

.ProductSliderWrapper {
  margin-bottom: 240px;
  padding: 80px 0 56px;
  background: #f2f2f2;
  overflow: hidden;
}
@media (max-width: 1150px) {
  .ProductSliderWrapper {
    margin-bottom: 160px;
  }
}
@media (max-width: 740px) {
  .ProductSliderWrapper {
    margin-bottom: 100px;
  }
}

.ProductSlider--inner {
  margin-bottom: 160px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1150px) {
  .ProductSlider--inner {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .ProductSlider--inner {
    margin-bottom: 60px;
  }
}
@media (max-width: 740px) {
  .ProductSlider--inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 740px) {
  .ProductSlider--inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.ProductSlider--title {
  grid-column: 1/span 12;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 900px) {
  .ProductSlider--title {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .ProductSlider--title {
    grid-column: 1/span 4;
  }
}
@media (max-width: 1150px) {
  .ProductSlider--title {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .ProductSlider--title {
    font-size: 24px;
  }
}

.ProductSlider {
  grid-column: 1/span 12;
  max-width: unset;
  margin-top: -40px;
}
@media (max-width: 900px) {
  .ProductSlider {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .ProductSlider {
    grid-column: 1/span 4;
  }
}

.ProductSlider--container {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -webkit-grab;
  /* (Optional) Apply a "closed-hand" cursor during drag operation. */
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 40px;
  margin-bottom: 40px;
}
.ProductSlider--container:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
@media (max-width: 740px) {
  .ProductSlider--container {
    margin-bottom: 32px;
    margin-left: 0;
  }
}
.ProductSlider--container:active {
  cursor: grabbing;
}

.ProductSlider--wrapper {
  display: flex;
  height: 100%;
  transform: translate3d(0px, 0, 0);
}

.ProductSlider--slide {
  position: relative;
  z-index: 30;
  width: 252px;
  max-width: calc(100% - 50px);
  min-height: 100%;
  flex: 1 0 auto;
  align-items: stretch;
  margin-right: 16px;
  will-change: transform;
  display: grid;
}
@media (max-width: 580px) {
  .ProductSlider--slide {
    margin-right: 25px;
  }
}

.ProductSlider .flickity-page-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.ProductSlider .flickity-page-dots.is-hidden {
  display: none;
}
.ProductSlider .flickity-page-dots > li {
  margin-right: 8px;
  background-color: #e5e5e5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.ProductSlider .flickity-page-dots > li.is-selected {
  background-color: #005288;
}
.ProductSlider .flickity-page-dots > li:last-of-type {
  margin-right: 0;
}

.ProductSlider--cta {
  display: flex;
  justify-content: center;
}

.ParagraphWrapper + .scroll-anchor + .QuoteWrapper,
.ParagraphWrapper + .QuoteWrapper {
  margin-top: -120px;
}
@media (max-width: 1150px) {
  .ParagraphWrapper + .scroll-anchor + .QuoteWrapper,
  .ParagraphWrapper + .QuoteWrapper {
    margin-top: -80px;
  }
}
@media (max-width: 740px) {
  .ParagraphWrapper + .scroll-anchor + .QuoteWrapper,
  .ParagraphWrapper + .QuoteWrapper {
    margin-top: -62px;
  }
}

.QuoteWrapper {
  margin-bottom: 40px;
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
}
@media (max-width: 1150px) {
  .QuoteWrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .QuoteWrapper {
    margin-bottom: 20px;
  }
}
@media (max-width: 740px) {
  .QuoteWrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.Quote {
  grid-column: 2/span 10;
}
@media (max-width: 900px) {
  .Quote {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .Quote {
    grid-column: 1/span 4;
  }
}
@media (min-width: 1151px) {
  .Quote {
    grid-column: 5/span 4;
  }
}
@media (min-width: 1151px) and (max-width: 900px) {
  .Quote {
    grid-column: 1/span 12;
  }
}
@media (min-width: 1151px) and (max-width: 740px) {
  .Quote {
    grid-column: 1/span 4;
  }
}

.Quote--text {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #179FD5;
}
@media (max-width: 740px) {
  .Quote--text {
    font-size: 18px;
  }
}
.Quote--text::before {
  content: "«";
}
.Quote--text::after {
  content: "»";
}

.SectionTitle {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 160px;
}
@media (max-width: 740px) {
  .SectionTitle {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .SectionTitle {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .SectionTitle {
    margin-bottom: 60px;
  }
}
.SectionTitle[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .SectionTitle[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .SectionTitle[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.SectionTitle[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .SectionTitle[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .SectionTitle[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.SectionTitle[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .SectionTitle[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .SectionTitle[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
@media (max-width: 900px) {
  .SectionTitle {
    gap: 16px;
  }
}

.SectionTitle--inner {
  display: flex;
  flex-direction: column;
  grid-column: 3/span 8;
}
@media (max-width: 900px) {
  .SectionTitle--inner {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .SectionTitle--inner {
    grid-column: 1/span 4;
  }
}
@media (max-width: 1150px) {
  .SectionTitle--inner {
    grid-column: 2/span 10;
  }
}
@media (max-width: 1150px) and (max-width: 900px) {
  .SectionTitle--inner {
    grid-column: 1/span 12;
  }
}
@media (max-width: 1150px) and (max-width: 740px) {
  .SectionTitle--inner {
    grid-column: 1/span 4;
  }
}

.SectionTitle--title {
  font-weight: 500;
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .SectionTitle--title {
    font-size: 40px;
  }
}
@media (max-width: 740px) {
  .SectionTitle--title {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media (max-width: 580px) {
  .SectionTitle--title {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}

.SectionTitle--label {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  font-weight: normal;
  color: #737273;
  display: block;
  margin-bottom: 0.5em;
}
@media (max-width: 1150px) {
  .SectionTitle--label {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .SectionTitle--label {
    font-size: 24px;
  }
}

.SectionSubtitle {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #737273;
  margin-bottom: 40px;
}
@media (max-width: 740px) {
  .SectionSubtitle {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .SectionSubtitle {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 900px) and (max-width: 740px) {
  .SectionSubtitle {
    font-size: 14px;
  }
}

.SectionTitle--buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.SectionTitle--buttons > * + * {
  margin-left: 0.5rem;
}
@media (min-width: 741px) {
  .SectionTitle--buttons > * + * {
    margin-left: 1rem;
  }
}

.SiteWrapper > .SectionTitle {
  transition: transform 1000ms cubic-bezier(0.23, 0.02, 0.15, 0.96), opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 0;
}
.SiteWrapper:not(.is-inview) > .SectionTitle {
  transform: translateY(min(25%, 25px));
}
.SiteWrapper > .SectionSubtitle {
  transition: transform 1000ms cubic-bezier(0.23, 0.02, 0.15, 0.96), opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 0;
}
.SiteWrapper:not(.is-inview) > .SectionSubtitle {
  transform: translateY(min(25%, 25px));
}

.StepListCard {
  padding: 50px;
  padding-top: 32px;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.06), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  margin: 0 auto;
}
@media (max-width: 740px) {
  .StepListCard {
    padding: 24px;
    padding-top: 16px;
  }
}

.StepListCard--header {
  display: flex;
  margin-bottom: 32px;
  color: #005288;
  align-items: center;
}
@media (max-width: 740px) {
  .StepListCard--header {
    margin-bottom: 24px;
  }
}

.StepListCard--header--number {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.1;
  margin-right: 24px;
}
@media (max-width: 1150px) {
  .StepListCard--header--number {
    font-size: 44px;
  }
}
@media (max-width: 740px) {
  .StepListCard--header--number {
    font-size: 36px;
    line-height: 1.2;
  }
}

.StepListCard--header--title {
  font-weight: 500;
}
@media (max-width: 740px) {
  .StepListCard--header--title {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
  }
}
@media (max-width: 740px) and (max-width: 740px) {
  .StepListCard--header--title {
    font-size: 14px;
  }
}

.StepListCard--title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 1em;
}
@media (max-width: 740px) {
  .StepListCard--title {
    font-size: 18px;
  }
}
@media (max-width: 740px) {
  .StepListCard--title {
    margin-bottom: 16px;
  }
}

.StepListCard--text {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #737273;
}
@media (max-width: 740px) {
  .StepListCard--text {
    font-size: 16px;
  }
}
@media (max-width: 740px) {
  .StepListCard--text {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 740px) and (max-width: 740px) {
  .StepListCard--text {
    font-size: 14px;
  }
}

.StepSlider {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  margin-bottom: 160px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  max-width: unset;
  margin-top: -40px;
}
@media (max-width: 1150px) {
  .StepSlider {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .StepSlider {
    margin-bottom: 60px;
  }
}
.StepSlider[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .StepSlider[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .StepSlider[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.StepSlider[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .StepSlider[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .StepSlider[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.StepSlider[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .StepSlider[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .StepSlider[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
@media (max-width: 740px) {
  .StepSlider {
    grid-template-columns: repeat(4, 1fr);
  }
}

.StepSlider--container {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -webkit-grab;
  /* (Optional) Apply a "closed-hand" cursor during drag operation. */
  grid-column: 2/span 10;
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 40px;
  margin-bottom: 40px;
}
.StepSlider--container:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
@media (max-width: 900px) {
  .StepSlider--container {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .StepSlider--container {
    grid-column: 1/span 4;
  }
}
@media (max-width: 740px) {
  .StepSlider--container {
    margin-bottom: 32px;
  }
}

.StepSlider--wrapper {
  display: flex;
  align-items: stretch;
  height: 100%;
  transform: translate3d(0px, 0, 0);
  transition-property: transform;
}

.StepSlider--slide {
  position: relative;
  display: flex;
  z-index: 30;
  width: 70%;
  flex: 1;
  min-height: 100%;
  margin-right: 15vw;
}
@media (min-width: 1440px) {
  .StepSlider--slide {
    margin-right: 8vw;
  }
}
@media (max-width: 900px) {
  .StepSlider--slide {
    width: 80%;
    margin-right: 5vw;
  }
}
@media (max-width: 740px) {
  .StepSlider--slide {
    width: 100%;
    margin-right: 16px;
  }
}

.StepSlider--button--next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  transform: translateY(-20px);
  margin-top: auto;
  margin-bottom: auto;
  background-color: #ffffff !important;
  right: 3vw;
}
@media (max-width: 900px) {
  .StepSlider--button--next {
    display: none !important;
  }
}
.StepSlider--button--next:disabled .Icon {
  color: #e5e5e5;
}
@media (min-width: 1440px) {
  .StepSlider--button--next {
    right: 6vw;
  }
}

.StepSlider--button--prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  transform: translateY(-20px);
  margin-top: auto;
  margin-bottom: auto;
  background-color: #ffffff !important;
  left: 3vw;
}
@media (max-width: 900px) {
  .StepSlider--button--prev {
    display: none !important;
  }
}
.StepSlider--button--prev:disabled .Icon {
  color: #e5e5e5;
}
@media (min-width: 1440px) {
  .StepSlider--button--prev {
    left: 6vw;
  }
}

.StepSlider .flickity-page-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.StepSlider .flickity-page-dots.is-hidden {
  display: none;
}
.StepSlider .flickity-page-dots > li {
  margin-right: 8px;
  background-color: #e5e5e5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.StepSlider .flickity-page-dots > li.is-selected {
  background-color: #005288;
}
.StepSlider .flickity-page-dots > li:last-of-type {
  margin-right: 0;
}
@media (max-width: 740px) {
  .StepSlider .flickity-page-dots {
    margin-top: 32px;
  }
}

.StepSlider--cta {
  display: flex;
  justify-content: center;
  grid-row: 2;
  grid-column: 5/span 4;
}
@media (max-width: 740px) {
  .StepSlider--cta {
    /* this is a temporary solution preventing two identical buttons in the same view with the sticky button from the hero mosaic */
    display: none;
  }
}

.TableLandingPageSale .Table thead tr th:first-of-type {
  width: 50%;
}
@media (max-width: 740px) {
  .TableLandingPageSale .Table thead tr th:first-of-type {
    width: 45%;
  }
}
@media (max-width: 740px) {
  .TableLandingPageSale .Table thead th {
    font-size: 12px;
  }
}
@media (max-width: 740px) {
  .TableLandingPageSale .Table tbody td .t-h4 {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
  }
}
@media (max-width: 740px) and (max-width: 740px) {
  .TableLandingPageSale .Table tbody td .t-h4 {
    font-size: 14px;
  }
}
.TableLandingPageSale .Table tr td:nth-of-type(2), .TableLandingPageSale .Table tr th:nth-of-type(2) {
  text-align: right;
}

.Type-CustomFlaechenHeizung {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 80px;
}
@media (max-width: 740px) {
  .Type-CustomFlaechenHeizung {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .Type-CustomFlaechenHeizung {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .Type-CustomFlaechenHeizung {
    margin-bottom: 40px;
  }
}
.Type-CustomFlaechenHeizung[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .Type-CustomFlaechenHeizung[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .Type-CustomFlaechenHeizung[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.Type-CustomFlaechenHeizung[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .Type-CustomFlaechenHeizung[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .Type-CustomFlaechenHeizung[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.Type-CustomFlaechenHeizung[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .Type-CustomFlaechenHeizung[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .Type-CustomFlaechenHeizung[data-component-gap=small] {
    margin-bottom: 20px;
  }
}

.Type-CustomFlaechenHeizung--inner {
  grid-column: 2/span 10;
}
@media (max-width: 900px) {
  .Type-CustomFlaechenHeizung--inner {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .Type-CustomFlaechenHeizung--inner {
    grid-column: 1/span 4;
  }
}

.NetlifyForm {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 100px;
}
@media (max-width: 740px) {
  .NetlifyForm {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 741px) {
  .NetlifyForm {
    margin-bottom: 160px;
  }
}
@media (min-width: 1151px) {
  .NetlifyForm {
    margin-bottom: 200px;
  }
}

.NetlifyForm--inner {
  grid-column: 3/span 8;
}
@media (max-width: 900px) {
  .NetlifyForm--inner {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .NetlifyForm--inner {
    grid-column: 1/span 4;
  }
}
.wide .NetlifyForm--inner {
  grid-column: 2/span 10;
}
@media (max-width: 900px) {
  .wide .NetlifyForm--inner {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .wide .NetlifyForm--inner {
    grid-column: 1/span 4;
  }
}

.NetlifyForm--form.is-submit-success button[type=submit], .NetlifyForm--form.is-submit-error button[type=submit] {
  display: none;
}

.NetlifyForm--formElement {
  margin-bottom: 1em;
}
@media (min-width: 741px) {
  .NetlifyForm--formElement {
    margin-bottom: 1.5em;
  }
}
@media (min-width: 1151px) {
  .NetlifyForm--formElement {
    margin-bottom: 2em;
  }
}
.is-submit-success .NetlifyForm--formElement, .is-submit-error .NetlifyForm--formElement {
  display: none;
}

.NetlifyForm--loader {
  display: none;
}

.NetlifyForm--submitButton.loading {
  cursor: wait;
}
.NetlifyForm--submitButton.loading .NetlifyForm--loader {
  position: relative;
  display: inline-block;
  margin-left: 16px;
}

.NetlifyForm--successMessage,
.NetlifyForm--errorMessage {
  display: none;
}
.NetlifyForm--successMessage > .Icon,
.NetlifyForm--errorMessage > .Icon {
  margin-bottom: 1em;
}

.is-submit-success .NetlifyForm--successMessage {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  height: 300px;
  padding: 12px 20px;
  border: 2px solid #005288;
  border-radius: 12px;
}

.is-submit-error .NetlifyForm--errorMessage {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  height: 300px;
  padding: 12px 20px;
  border: 2px solid #e30613;
  border-radius: 12px;
}

.NetlifyForm--responseStatusText {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  max-width: 360px;
}

.SchemaFinder {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .SchemaFinder {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .SchemaFinder {
    margin-bottom: 60px;
  }
}

.LinkListWrapper {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
}
@media (max-width: 740px) {
  .LinkListWrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.LinkList.default {
  margin-bottom: 2em;
}
.LinkList.default .LinkList--link {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #005288;
  display: flex;
  align-items: center;
  padding: 5px 0;
}
@media (max-width: 740px) {
  .LinkList.default .LinkList--link {
    font-size: 16px;
  }
}
.LinkList.default .LinkList--link:hover::before {
  margin-right: 30px !important;
}
.LinkList.default .LinkList--item.download > .LinkList--link::before {
  content: url("/assets/graphics/download.svg");
  flex: 0;
  margin-right: 20px;
  transition: margin-right 0.2s ease-in-out;
}
.LinkList.default .LinkList--item.external > .LinkList--link::before {
  content: url("/assets/graphics/external-link.svg");
  flex: 0;
  margin-right: 20px;
  transition: margin-right 0.2s ease-in-out;
}
.LinkList.grid2, .LinkList.grid3 {
  grid-column: 2/span 10;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 120px;
}
@media (max-width: 900px) {
  .LinkList.grid2, .LinkList.grid3 {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .LinkList.grid2, .LinkList.grid3 {
    grid-column: 1/span 4;
  }
}
@media (max-width: 740px) {
  .LinkList.grid2, .LinkList.grid3 {
    grid-gap: 20px;
  }
}
.LinkList.grid2 .LinkList--image, .LinkList.grid3 .LinkList--image {
  position: relative;
  background-color: #f2f2f2;
  aspect-ratio: 1.5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.LinkList.grid2 .LinkList--image > img, .LinkList.grid3 .LinkList--image > img {
  border-radius: 12px;
  overflow: hidden;
  max-width: calc(100% - 80px);
  max-height: calc(100% - 80px);
  width: auto;
  height: auto;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.06);
}
.LinkList.grid2 .LinkList-fakePreview .title, .LinkList.grid3 .LinkList-fakePreview .title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.1;
  color: #005288;
  margin-bottom: 0.5ex;
}
.LinkList.grid2 .LinkList-fakePreview .filename, .LinkList.grid3 .LinkList-fakePreview .filename {
  font-size: 10px;
  word-wrap: break-word;
  font-weight: bold;
}
.LinkList.grid2 .LinkList--linktext, .LinkList.grid3 .LinkList--linktext {
  font-size: 14px;
  font-weight: bold;
  color: #005288;
  display: flex;
  align-items: center;
  line-height: 1;
  margin-top: 15px;
}
.LinkList.grid2 .LinkList--linktext::before, .LinkList.grid3 .LinkList--linktext::before {
  content: url("/assets/graphics/download.svg");
  flex: 0;
  margin-right: 15px;
  transition: margin-right 0.2s ease-in-out;
}
.LinkList.grid2 .LinkList--item:hover .LinkList--linktext::before, .LinkList.grid3 .LinkList--item:hover .LinkList--linktext::before {
  margin-right: 20px !important;
}
@media (min-width: 741px) {
  .LinkList.grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.RichText {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 160px;
}
@media (max-width: 740px) {
  .RichText {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .RichText {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .RichText {
    margin-bottom: 60px;
  }
}
.RichText[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .RichText[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .RichText[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.RichText[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .RichText[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .RichText[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.RichText[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .RichText[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .RichText[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
.RichText > .contentful-richtext {
  grid-column: 3/span 8;
}
@media (max-width: 900px) {
  .RichText > .contentful-richtext {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .RichText > .contentful-richtext {
    grid-column: 1/span 4;
  }
}
@media (max-width: 1150px) {
  .RichText > .contentful-richtext {
    grid-column: 2/span 10;
  }
}
@media (max-width: 1150px) and (max-width: 900px) {
  .RichText > .contentful-richtext {
    grid-column: 1/span 12;
  }
}
@media (max-width: 1150px) and (max-width: 740px) {
  .RichText > .contentful-richtext {
    grid-column: 1/span 4;
  }
}
.RichText > .contentful-richtext > * p {
  color: #737273;
}

.ExpoHeader .Header--platformNav {
  position: static;
}
@media (max-width: 1100px) {
  .ExpoHeader .Header--platformNav {
    position: absolute;
    top: 8px;
    right: 8px;
  }
}
.ExpoHeader .Header--nav {
  margin-top: 0;
}
@media (max-width: 1100px) {
  .ExpoHeader .Header--nav {
    margin-top: 15px;
  }
}
.ExpoHeader .Header--inner {
  align-items: center;
}
@media (max-width: 1100px) {
  .ExpoHeader .Header--inner {
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .ExpoHeader .Header--inner {
    align-items: center;
  }
}

.Breadcrumb {
  display: flex;
  margin-bottom: 33px;
}
@media (max-width: 1150px) {
  .Breadcrumb {
    margin-bottom: 24px;
  }
}
@media (max-width: 740px) {
  .Breadcrumb {
    margin-bottom: 16px;
  }
}

.Breadcrumb--item {
  display: flex;
  align-items: center;
}
.Breadcrumb--item + .Breadcrumb--item {
  margin-left: 24px;
  position: relative;
}
.Breadcrumb--item + .Breadcrumb--item::before {
  position: absolute;
  top: 0;
  left: -14px;
  content: "/";
  font-size: 16px;
  margin-right: 12px;
  color: #005288;
  height: 20px;
}
@media (max-width: 900px) {
  .Breadcrumb--item + .Breadcrumb--item::before {
    font-size: 12px;
  }
}

.Breadcrumb--link {
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  padding-bottom: 5px;
  border-radius: 0;
  border: none;
  overflow: hidden;
  z-index: 0;
  font-size: 16px;
  color: #005288;
  text-decoration: none;
}
@media (min-width: 901px) {
  .Breadcrumb--link:after {
    content: "";
    width: 100%;
    height: 2px;
    background: currentcolor;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    transform: translateX(-101%);
    transition: transform 300ms ease-in-out;
  }
  .Breadcrumb--link:hover:after {
    transform: translateX(0%);
  }
}
@media (max-width: 900px) {
  .Breadcrumb--link {
    font-size: 14px;
    padding: 0;
    margin-bottom: 0;
  }
}

.Footer {
  margin-bottom: 60px;
}

.Footer--logo {
  display: block;
  width: 100px;
  margin-bottom: 60px;
  color: #2FB4E9;
}

.Footer--main {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 740px) {
  .Footer--main {
    flex-direction: column;
  }
}

.Footer--links {
  flex-grow: 1;
  display: flex;
  gap: 40px;
}
.Footer--links > * {
  width: clamp(160px, 25%, 240px);
}
@media (max-width: 740px) {
  .Footer--links {
    flex-direction: column;
    gap: 40px;
  }
  .Footer--links > * {
    width: 100%;
  }
}
[data-layout=promotion] .Footer--links {
  display: none;
}

.Footer--content .richtext > * {
  font-size: 16px;
  line-height: 1.45;
  color: #000000;
}
.Footer--content .richtext a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  overflow: visible;
  color: inherit;
}
.Footer--content .richtext a::after {
  content: none;
}
.Footer--content .richtext a:hover {
  color: rgb(17.0260869565, 119.9565217391, 160.9739130435);
}

.Footer--address {
  color: #2FB4E9;
  margin-bottom: 40px;
}
.Footer--address > div:not(:last-of-type) {
  margin-bottom: 26px;
}

.Footer--meta {
  font-weight: 500;
  color: #505050;
  margin-top: 100px;
  font-size: 14px;
}
@media (max-width: 1150px) {
  .Footer--meta {
    margin-top: 60px;
  }
}
@media (min-width: 741px) {
  .Footer--meta {
    display: flex;
  }
}
@media (max-width: 740px) {
  .Footer--meta {
    font-size: 12px;
  }
}

.Footer--copyright {
  display: block;
  margin-bottom: 24px;
  flex: 0 0 auto;
}

.Footer--lang-switch {
  display: inline-block;
  justify-self: flex-end;
}
@media (max-width: 900px) {
  .Footer--lang-switch {
    display: none;
  }
}

[data-layout=promotion] .Footer--social {
  display: none;
}

.FooterLinklist {
  font-size: 16px;
  line-height: 1.45;
}

.FooterLinklist--title {
  font-weight: 500;
  margin-bottom: 0.75em;
}

.FooterLinklist--list {
  margin-top: -8px;
}

.FooterLinklist--link {
  font-weight: normal;
  display: flex;
  padding: 8px 0;
  line-height: 1;
  gap: 8px;
  color: #737273;
  transition: color 100ms ease;
}
@media (hover: hover) {
  .FooterLinklist--link:hover {
    color: #000000;
  }
  .FooterLinklist--link:focus {
    color: #000000;
  }
}

.FooterLinksSocial {
  flex: 0 0 auto;
  margin-top: 40px;
}

.FooterLinksSocial--items {
  display: flex;
}

.FooterLinksSocial--item:not(:first-of-type) {
  margin-left: 20px;
}
@media (max-width: 740px) {
  .FooterLinksSocial--item:not(:first-of-type) {
    margin-left: 8px;
  }
}
.FooterLinksSocial--item .Button {
  background-color: #f2f2f2;
}
.FooterLinksSocial--item .Button:hover {
  background-color: #d6f0fa;
}

.FooterLinksSocial--link {
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
  background: #e8f7fd;
  border-radius: 8px;
  transition: 100ms ease;
}
.FooterLinksSocial--link .Icon {
  color: #005288;
}
@media (hover: hover) {
  .FooterLinksSocial--link:hover {
    background-color: #d6f0fa;
  }
  .FooterLinksSocial--link:focus {
    background-color: #d6f0fa;
  }
}

.FooterMeta {
  font-weight: 500;
  flex-grow: 1;
}

.FooterMeta--links {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 740px) {
  .FooterMeta--links {
    display: block;
  }
}

.FooterMeta--links--item {
  cursor: pointer;
}
.FooterMeta--links--item:hover {
  color: #000000;
}
@media (max-width: 740px) {
  .FooterMeta--links--item {
    margin-bottom: 24px;
  }
}

.FooterMeta--link {
  transition: 25ms color cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (min-width: 741px) {
  .FooterMeta--link {
    margin-left: 30px;
  }
}
@media (min-width: 1151px) {
  .FooterMeta--link {
    display: inline-block;
  }
}

.PreFooter--links {
  margin-left: 100px;
  margin-left: var(--page-margin);
  margin-right: 100px;
  margin-right: var(--page-margin);
  position: relative;
  margin-top: 220px;
  padding-bottom: 220px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1150px) {
  .PreFooter--links {
    margin-top: 180px;
  }
}
@media (max-width: 900px) {
  .PreFooter--links {
    margin-top: 120px;
  }
}
@media (max-width: 1150px) {
  .PreFooter--links {
    padding-bottom: 180px;
  }
}
@media (max-width: 900px) {
  .PreFooter--links {
    padding-bottom: 120px;
  }
}

.PreFooter--item {
  width: 25%;
  text-align: center;
}
@media (min-width: 1151px) {
  .PreFooter--item {
    width: 20%;
  }
}
@media (min-width: 1440px) {
  .PreFooter--item {
    width: 15%;
  }
}

.PreFooter--link {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #767676;
  letter-spacing: 0.02em;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0px;
  transition: all 0.2s;
}
@media (max-width: 740px) {
  .PreFooter--link {
    font-size: 14px;
  }
}
.PreFooter--link:hover {
  color: #000000;
}
.PreFooter--link:hover > .PreFooter--link--image {
  opacity: 1;
  transform: scale(1.05);
}
.PreFooter--link > .PreFooter--link--image {
  margin-bottom: 1em;
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.PreFooter--link {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.PreFooter--link--image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

:root {
  --site-header--height: 146px;
}
@media (max-width: 1150px) {
  :root {
    --site-header--height: 127px;
  }
}
@media (max-width: 900px) {
  :root {
    --site-header--height: 98px;
  }
}
:root [data-page-type=expo] {
  --site-header--height: 150px;
}
@media (max-width: 1150px) {
  :root [data-page-type=expo] {
    --site-header--height: 150px;
  }
}
@media (max-width: 900px) {
  :root [data-page-type=expo] {
    --site-header--height: 115px;
  }
}
@media (min-width: 901px) {
  :root[data-homepage] {
    --site-header--height: 167px;
  }
}
@media (min-width: 1151px) {
  :root[data-homepage] {
    --site-header--height: 186px;
  }
}

.Header {
  --headerColor: #000;
  --headerBgColor: #fff;
  --headerActiveColor: #005288;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 100vw;
  background-color: var(--headerBgColor);
  z-index: var(--layer-header);
  color: var(--headerColor);
}
.Header[data-variant=professional] {
  --headerBgColor: #179FD5;
  --headerColor: #000;
  --headerActiveColor: #000;
}

.Header--inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: repeat(2, auto);
  -moz-column-gap: 40px;
  column-gap: 40px;
  grid-template-areas: ". platform platform" "logo main meta";
  padding-top: 24px;
  padding-bottom: 40px;
  z-index: var(--layer-header)3;
}
@media (min-width: 901px) {
  [data-homepage] .Header--inner {
    padding-bottom: 80px;
  }
}
@media (max-width: 1150px) {
  .Header--inner {
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}
@media (max-width: 900px) {
  .Header--inner {
    padding-bottom: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "logo mobilenav";
  }
}

.Header--nav {
  grid-area: main;
}
@media (max-width: 900px) {
  .Header--nav {
    display: none;
  }
}
[data-layout=promotion] .Header--nav, [data-layout=overlay] .Header--nav {
  display: none;
}

.Header--meta {
  grid-area: meta;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  .Header--meta {
    display: none;
  }
}
[data-layout=promotion] .Header--meta, [data-layout=overlay] .Header--meta {
  display: none;
}

.Header--parentLink {
  display: none;
  grid-area: meta;
  justify-self: end;
  align-self: center;
}
@media (max-width: 900px) {
  .Header--parentLink {
    grid-area: mobilenav;
  }
}
[data-layout=overlay] .Header--parentLink {
  display: block;
}

.Header--platformNav {
  grid-area: platform;
  flex: 1 0 auto;
  margin-left: 30px;
}
@media (max-width: 900px) {
  .Header--platformNav {
    display: none;
  }
}
[data-layout=promotion] .Header--platformNav, [data-layout=overlay] .Header--platformNav {
  display: none;
}

.Header--mobile {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-self: flex-end;
  grid-area: mobilenav;
}
@media (min-width: 901px) {
  .Header--mobile {
    display: none;
  }
}
.Header--mobile .Button.icon-only.no-border {
  background-color: #ffffff;
}
[data-layout=promotion] .Header--mobile, [data-layout=overlay] .Header--mobile {
  display: none;
}

.Header {
  will-change: transform;
  transition-property: transform;
  transition-duration: 400ms;
  transition-delay: 200ms;
}

.Header.scroll-down {
  transform: translateY(-100%);
  visibility: hidden;
  transition-property: transform, visibility;
  transition-duration: 500ms, 0s;
  transition-delay: 0s, 500ms;
  transition-timing-function: cubic-bezier(0.23, 0.02, 0.15, 0.96), linear;
}

.Header.scroll-up {
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.04);
  --layer-header: 13;
}

.Header--logo {
  grid-area: logo;
  color: var(--headerActiveColor);
}

.MainNav {
  height: 100%;
}

@media (min-width: 901px) {
  .MainNav--items {
    height: 100%;
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
}

.MainNav--item {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (min-width: 901px) {
  .MainNav--item + .MainNav--item {
    margin-left: 30px;
  }
}
@media (min-width: 1440px) {
  .MainNav--item + .MainNav--item {
    margin-left: 40px;
  }
}
@media (max-width: 900px) {
  .MainNav--item {
    font-size: 18px;
  }
}

.MainNav--item--active {
  color: var(--headerActiveColor);
}
.MainNav--item--active .MainNav--item--link::after {
  opacity: 1;
  visibility: visible;
}

.MainNav--overlay {
  position: absolute;
}

.MainNav--item--link {
  display: block;
  position: relative;
  padding-top: 1em;
  padding-bottom: 1em;
  margin-bottom: -1em;
  line-height: 1;
}
[data-page-section=professional] .MainNav--item--link {
  color: #ffffff;
}
@media (max-width: 900px) {
  .MainNav--item--link {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
    margin-bottom: 0;
  }
}
.MainNav--item--link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--headerActiveColor);
  opacity: 0;
  visibility: hidden;
  transition: 100ms ease-in-out;
}
[data-page-section=professional] .MainNav--item--link::after {
  background-color: #ffffff;
}
.MainNav--item--link[aria-expanded=true]::after {
  opacity: 1;
  visibility: visible;
}
.MainNav--item--link:hover:not([aria-current=page])::after {
  opacity: 0.5;
  visibility: visible;
}

.MainNavFlyoutWrapper {
  position: fixed;
  top: calc(var(--site-header--height) - 18px);
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: var(--layer-header)4;
}
@media (min-width: 901px) {
  [data-homepage] .MainNavFlyoutWrapper {
    top: calc(var(--site-header--height) - 40px);
  }
}
@media (max-width: 900px) {
  .MainNavFlyoutWrapper {
    top: calc(var(--site-header--height) - 1px);
  }
  .Header .MainNavFlyoutWrapper {
    display: none;
  }
}

.MainNavFlyout {
  --flyout-padding: 50px;
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  width: 100%;
  color: #000000;
  pointer-events: none;
}
@media (max-width: 740px) {
  .MainNavFlyout {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .MainNavFlyout {
    --flyout-padding: 30px;
  }
}
@media (max-width: 900px) {
  .MainNavFlyout {
    padding: 0;
  }
}
.MainNavFlyout[aria-hidden=true] {
  display: none;
}
@media (max-width: 900px) {
  .MainNavFlyout[aria-hidden=true] {
    display: block;
    visibility: hidden;
  }
}

.MainNavFlyout--scrollContainer {
  grid-column: 2/span 10;
  max-height: 70vh;
  overflow-y: scroll;
  border-radius: 8px;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.04);
  pointer-events: auto;
}
@media (max-width: 900px) {
  .MainNavFlyout--scrollContainer {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .MainNavFlyout--scrollContainer {
    grid-column: 1/span 4;
  }
}
@media (max-width: 1150px) {
  .MainNavFlyout--scrollContainer {
    grid-column: 1/span 12;
  }
}
@media (max-width: 1150px) and (max-width: 900px) {
  .MainNavFlyout--scrollContainer {
    grid-column: 1/span 12;
  }
}
@media (max-width: 1150px) and (max-width: 740px) {
  .MainNavFlyout--scrollContainer {
    grid-column: 1/span 4;
  }
}
@media (max-width: 900px) {
  .MainNavFlyout--scrollContainer {
    max-height: calc(100vh - var(--site-header--height) + 1px);
    border-radius: 0;
  }
}

.MainNavFlyout--inner {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-areas: "submenu service";
  background-color: #ffffff;
  overflow: hidden;
}
[data-layout=reverse] .MainNavFlyout--inner {
  grid-template-columns: 2fr 3fr;
  grid-template-areas: "service submenu";
}
@media (max-width: 900px) {
  .MainNavFlyout--inner {
    grid-template-columns: 1fr;
    grid-template-areas: "submenu" "service";
  }
  [data-layout=reverse] .MainNavFlyout--inner {
    grid-template-columns: 1fr;
    grid-template-areas: "service" "submenu";
  }
}

.MainNavFlyout--backBtn {
  font-weight: 500;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: var(--layer-header)41;
  width: 100%;
  padding: 24px var(--flyout-padding);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  background-color: #ffffff;
}
[data-page-section=professional] .MainNavFlyout--backBtn {
  background-color: #2FB4E9;
  color: white;
}

.MainNav--SubMenu {
  padding: var(--flyout-padding);
  grid-area: submenu;
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
@media (max-width: 900px) {
  .MainNav--SubMenu {
    grid-template-columns: 1fr;
  }
}

.MainNav--subitem--list--title {
  font-weight: 500;
  font-size: 12px;
  color: #737273;
  margin-bottom: 2em;
}

@media (min-width: 901px) {
  .MainNav--subitem {
    max-width: 300px;
  }
}

.MainNav--subitem--link {
  font-weight: 700;
  -webkit-hyphens: auto;
  hyphens: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  cursor: pointer;
}
.MainNav--subitem--link:hover .MainNav--subitem--linkIcon {
  transform: translateX(0.25em);
}

.MainNav--subitem--linkIcon {
  color: #005288;
  transition: 200ms ease;
}
@media (max-width: 900px) {
  .MainNav--subitem--linkIcon {
    display: none;
  }
}

.MainNavFlyout .js-MainNav--flyout--close.FocusOnly {
  position: absolute;
  bottom: 0;
  left: 0;
}

.MobileNav .MainNavFlyoutWrapper {
  transform: translateX(100%);
  transition: transform 330ms ease-out;
}
.MobileNav .MobileNav--body {
  transform: translateX(0);
  transition: transform 330ms ease-out;
}
.nav-flyout-open .MobileNav .MainNavFlyoutWrapper {
  transform: translateX(0);
}
.nav-flyout-open .MobileNav .MobileNav--body {
  transform: translateX(-100%) !important;
}
.MobileNav .MainNavFlyout[aria-hidden=true] {
  transition: visibility 100ms 330ms;
}

.MobileNavTrigger {
  height: 40px;
  width: 40px;
}

.MobileNavTrigger .Icon {
  height: 24px;
  width: 24px;
}
.MobileNavTrigger .Icon path {
  transform-origin: center center;
  transition: transform ease-in-out 300ms;
}

.MobileNavTrigger[aria-expanded=true] .Icon path {
  transform-origin: center center;
  transform: rotateZ(45deg) translateY(-3px);
  transition: transform ease-in-out 300ms;
}
.MobileNavTrigger[aria-expanded=true] .Icon path:first-of-type {
  transform: rotateZ(-45deg) translateY(3px);
}

@media (min-width: 901px) {
  .PlatformNav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.PlatformNav .t-small {
  font-weight: 500;
  color: #737273;
}

.PlatformNav--items {
  display: flex;
}
@media (min-width: 901px) {
  .PlatformNav--items {
    margin-left: 1em;
  }
}
@media (max-width: 900px) {
  .PlatformNav--items {
    display: block;
  }
}

.PlatformNav--item {
  padding-left: 16px;
  position: relative;
}
.PlatformNav--item:not(:last-of-type) {
  padding-right: 17px;
}
.PlatformNav--item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  height: 16px;
  right: 0;
  top: 2px;
  width: 1px;
  background: #999999;
}
[data-variant=professional] .PlatformNav--item:not(:last-of-type)::after {
  background: #ffffff;
}
@media (max-width: 900px) {
  .PlatformNav--item:not(:last-of-type)::after {
    content: none;
  }
}
@media (max-width: 900px) {
  .PlatformNav--item {
    padding: 0;
  }
}

.PlatformNav--link {
  font-weight: 500;
  margin-top: -12px;
  margin-bottom: -12px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.PlatformNav--link.Grey {
  color: #737273;
  transition: 100ms ease;
}
@media (hover: hover) {
  .PlatformNav--link.Grey:hover {
    color: #000000;
  }
  .PlatformNav--link.Grey:focus {
    color: #000000;
  }
}
[data-page-section=professional] .PlatformNav--link.Grey {
  color: #ffffff;
}
.PlatformNav--link.Red {
  color: #e30613;
}
.PlatformNav--link .Icon {
  height: 12px;
  width: 12px;
}
@media (max-width: 900px) {
  .PlatformNav--link {
    margin: 0;
  }
}

.ServiceNav {
  padding: var(--flyout-padding);
  background-color: #F6FBFE;
}

.ServiceNav--list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ServiceNav--list:not(:last-of-type) {
  margin-bottom: 40px;
}

.ServiceNav--list--title {
  font-weight: 500;
  font-size: 12px;
  color: #737273;
  margin-bottom: 16px;
}

.LangSwitch {
  display: flex;
}

.LangSwitch--button + .LangSwitch--button {
  margin-left: 1em;
}

.Button.LangSwitch--button.LangSwitch--button--active {
  background: #005288;
  color: #ffffff;
  pointer-events: none;
}
.Button.LangSwitch--button:not(.LangSwitch--button--active) {
  background-color: #f2f2f2;
  opacity: 0.5;
}
.Button.LangSwitch--button:not(.LangSwitch--button--active):hover {
  background-color: #e8f7fd;
  opacity: 1;
}

.MobileMetaNav--item {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
}
.MobileMetaNav--item .Button {
  padding: 8px 0;
  color: #737273;
}

/*html*/
.is-mobilenav-open body {
  height: 100vh;
  overflow: hidden;
}

.MobileNav {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 5;
  overflow: scroll;
  pointer-events: none;
  visibility: hidden;
  animation: visibility 330ms linear;
}
@media (max-width: 900px) {
  .MobileNav {
    display: block;
  }
}
.MobileNav.is-animatable .MobileNav--body {
  transition: all 330ms ease-out;
}
.MobileNav.is-open {
  visibility: visible;
}
.MobileNav.is-open .MobileNav--body {
  transform: none;
  transition: all 330ms ease-out;
  pointer-events: auto;
}
.MobileNav.is-open .MobileNav--backdrop {
  opacity: 1;
  pointer-events: auto;
}

.MobileNav--body {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 0 40px 40px 40px;
  left: 0;
  top: calc(var(--site-header--height) - 1px);
  z-index: 2;
  width: 100%;
  height: calc(100vh - var(--site-header--height) + 1px);
  overflow: hidden;
  overflow-y: auto;
  background-color: #ffffff;
  transform: translateY(-150%);
  will-change: transform;
  pointer-events: none;
}
@media (max-width: 740px) {
  .MobileNav--body {
    padding: 0 24px 40px 24px;
  }
}

.MobileNav--backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
  pointer-events: none;
}

.MobileNav--main {
  margin-bottom: 38px;
}
[data-page-section=professional] .MobileNav--main {
  color: #ffffff;
}

.MobileNav--platform {
  position: relative;
  padding-top: 24px;
  padding-bottom: 38px;
}
[data-page-section=professional] .MobileNav--platform {
  color: #ffffff;
}
.MobileNav--platform::before, .MobileNav--platform::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 47px;
  background-color: #e1e1e1;
}
.MobileNav--platform::before {
  top: 0;
}
.MobileNav--platform::after {
  bottom: 0;
}
[data-page-section=professional] .MobileNav--platform::after {
  content: "";
  position: absolute;
  height: 100vh;
  width: 100vw;
  bottom: 0;
  left: -40px;
  background-color: #2FB4E9;
  z-index: -1;
}
@media (max-width: 740px) {
  [data-page-section=professional] .MobileNav--platform::after {
    left: -24px;
  }
}

.MobileNav--meta {
  padding: 24px 0;
  flex-grow: 1;
}

.MobileNav--LangSwitch .Button.LangSwitch--button--active {
  background-color: #e8f7fd;
  color: #2FB4E9;
}

.MobilePlatformNav--link {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 84px;
  display: flex;
  align-items: center;
}
.MobilePlatformNav--link .Icon {
  color: #e30613;
  margin-left: 12px;
  height: 12px;
  width: 12px;
}

.MobileSubNav {
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  transform: translate3d(0, 0, 0);
}

.MobileSubNav--header,
.MobileSubNav--body {
  margin-left: 100px;
  margin-left: var(--page-margin);
  margin-right: 100px;
  margin-right: var(--page-margin);
  position: relative;
}

.MobileSubNav--body {
  margin-top: 180px;
  margin-bottom: 180px;
}
@media (max-width: 1150px) {
  .MobileSubNav--body {
    margin-top: 140px;
  }
}
@media (max-width: 900px) {
  .MobileSubNav--body {
    margin-top: 100px;
  }
}
@media (max-width: 1150px) {
  .MobileSubNav--body {
    margin-bottom: 140px;
  }
}
@media (max-width: 900px) {
  .MobileSubNav--body {
    margin-bottom: 100px;
  }
}

.MobileSubNav--title {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media (min-width: 741px) {
  .MobileSubNav--title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
  }
}

.MobileSubNav--link {
  display: block;
  color: #767676;
  padding: 12px 0;
}

.MobileSubNav--header {
  padding-top: 12px;
  padding-bottom: 12px;
}

.MobileSubNav--backLink {
  vertical-align: top;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 0;
  margin-top: -12px;
}

.MobileSubNav--backLink--icon {
  display: inline-block;
  width: 40px;
  height: 24px;
  line-height: 24px;
  vertical-align: middle;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  margin-right: 10px;
  padding-top: 2px;
}

body.modal-open {
  overflow-y: hidden;
}

.Search--trigger {
  padding-right: 16px;
  padding-left: 16px;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: 100ms ease;
}
.Search-light .Search--trigger {
  color: #ffffff;
}
.Search-dark .Search--trigger {
  color: #005288;
  border-color: #005288;
}
@media (min-width: 901px) {
  .Search-light .Search--trigger {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
}
@media (min-width: 901px) and (hover: hover) {
  .Search-light .Search--trigger:hover {
    border-color: #ffffff;
  }
}
@media (min-width: 901px) {
  .Search-dark .Search--trigger {
    background-color: #ffffff;
    border: 2px solid #179FD5;
  }
}
@media (min-width: 901px) and (hover: hover) {
  .Search-dark .Search--trigger:hover {
    border-color: #179FD5;
  }
}

.Search--triggerText {
  position: absolute !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: polygon(0 0) !important;
  clip-path: polygon(0 0) !important;
  color: #000;
}
@media (min-width: 901px) {
  .Search--triggerText {
    position: static !important;
    clip: auto !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
  }
}
[data-variant=professional] .Search--triggerText {
  color: #ffffff;
}

.Search--triggerIcon {
  fill: #000000;
  width: 24px;
  height: 24px;
}
.Search-light .Search--triggerIcon {
  fill: #ffffff;
}
@media (min-width: 901px) {
  .Search--triggerIcon {
    margin-left: 24px;
  }
  .Search-dark .Search--triggerIcon {
    fill: #000;
  }
}

.Search--overlay {
  position: fixed;
  background: #ffffff;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  overflow-y: scroll;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #000000;
}

.overlay-transition-enter-active,
.overlay-transition-leave-active {
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.overlay-transition-enter-from,
.overlay-transition-leave-to {
  top: 80px;
  opacity: 0;
}

.Search--overlay--close {
  position: fixed;
  top: 36px;
  right: 32px;
  z-index: 20;
}
.Search--overlay--close > svg {
  width: 24px;
  height: 24px;
}

.Search--overlay--inner {
  position: relative;
  margin: 0 32px;
}
@media (min-width: 901px) {
  .Search--overlay--inner {
    margin: 0 156px;
  }
}

.Search--overlay--body {
  margin: 0 32px;
}
@media (min-width: 901px) {
  .Search--overlay--body {
    margin: 0 156px;
  }
}

.Search--overlay--search {
  padding-top: 74px;
  padding-bottom: 20px;
  background-color: #ffffff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (min-width: 901px) {
  .Search--overlay--search {
    padding-top: 110px;
    padding-bottom: 30px;
    top: -70px;
  }
}

.Search--overlay--input {
  width: 100%;
  padding: 0 0 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  border: none;
  border-bottom: 1px solid #f2f2f2;
}

.Search--overlay--tags {
  display: flex;
  flex-flow: row wrap;
  grid-gap: 8px;
  margin-top: 20px;
}

.Search--overlay--tag {
  display: grid;
  grid-template-columns: 0 auto;
  align-items: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  border: 2px solid #e5e5e5;
  color: #999999;
  border-radius: 28px;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
}
.Search--overlay--tag.red {
  border-color: #ffcbcf;
  color: #d24768;
}
.Search--overlay--tag.red:hover {
  border-color: #e30613;
  color: #e30613;
}
.Search--overlay--tag::before {
  content: " ";
  height: 14px;
  width: 14px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQgMTIuODU3MUw4LjggMThMMjAgNiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
@media (hover: hover) {
  .Search--overlay--tag:hover {
    border-color: #2FB4E9;
    color: #2FB4E9;
  }
  .Search--overlay--tag:focus {
    border-color: #2FB4E9;
    color: #2FB4E9;
  }
}
.Search--overlay--tagInput:checked + .Search--overlay--tag {
  background-color: #2FB4E9;
  border-color: #2FB4E9;
  color: #ffffff;
  grid-template-columns: 24px auto;
}
.Search--overlay--tagInput:checked + .Search--overlay--tag.red {
  background-color: #e30613;
  color: #ffffff;
  border-color: #e30613;
}
.Search--overlay--tagInput:checked + .Search--overlay--tag::before {
  display: block;
}

.Search--overlay--results {
  padding-top: 20px;
}
@media (min-width: 901px) {
  .Search--overlay--results {
    padding-top: 30px;
  }
}

.Search--overlay--resultsSubTitle {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  color: #737273;
}

.Search--overlay--resultsList {
  margin-bottom: 64px;
}

.Search--overlay--resultLink {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px 60px;
  padding: 24px 0;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
}

.Search--overlay--resultText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column-start: 1;
  grid-column-end: 2;
}

.Search--overlay--resultTitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  transition: 100ms ease;
}
.Search--overlay--resultLink:hover .Search--overlay--resultTitle {
  color: #2FB4E9;
}

.Search--overlay--resultDescription {
  color: #737273;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.Search--overlay--resultImage {
  width: 60px;
  height: 60px;
  max-width: 100%;
  grid-column-start: 2;
  grid-column-end: 3;
  border-radius: 12px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.Search--overlay--resultIcon {
  position: absolute;
  top: 50%;
  right: 12px;
  stroke: #2FB4E9;
  transform: translate(0px, -50%);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
.Search--overlay--resultLink:hover .Search--overlay--resultIcon {
  transform: translate(6px, -50%);
}

.HeroDecider {
  margin-bottom: 160px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1150px) {
  .HeroDecider {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .HeroDecider {
    margin-bottom: 60px;
  }
}
@media (max-width: 740px) {
  .HeroDecider {
    flex-wrap: wrap-reverse;
  }
}

.HeroDecider--content {
  margin-right: 40px;
  flex: 1;
}
@media (max-width: 400px) {
  .HeroDecider--content {
    margin-right: 0;
  }
}

.HeroDecider--image {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-right: 100px;
}
@media (max-width: 1150px) {
  .HeroDecider--image {
    padding-right: 50px;
  }
}
@media (max-width: 740px) {
  .HeroDecider--image {
    width: 100%;
    padding-right: 0;
    margin-bottom: 57px;
  }
}
.HeroDecider--image::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -100px;
  width: 80%;
  height: 85%;
  border-radius: 12px;
  background-color: #179FD5;
}
@media (max-width: 1150px) {
  .HeroDecider--image::before {
    bottom: -50px;
  }
}
@media (max-width: 740px) {
  .HeroDecider--image::before {
    right: -24px;
    bottom: -32px;
    border-radius: 8px;
  }
}
.HeroDecider--image > .Picture {
  width: 35vw;
}
@media (max-width: 740px) {
  .HeroDecider--image > .Picture {
    width: 100%;
  }
}
.HeroDecider--image .Picture {
  max-width: 600px;
  height: 0;
  padding-top: 100% !important;
}
@media (max-width: 740px) {
  .HeroDecider--image {
    width: 100%;
    max-width: 380px;
  }
}

.HeroDecider--title {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 40px;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (max-width: 1150px) {
  .HeroDecider--title {
    font-size: 44px;
  }
}
@media (max-width: 740px) {
  .HeroDecider--title {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media (max-width: 740px) {
  .HeroDecider--title {
    margin-bottom: 0.5em;
  }
}

.HeroDecider--options {
  display: flex;
}

.HeroDecider--lead {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 120px;
}
@media (min-width: 741px) {
  .HeroDecider--lead {
    padding-left: 20%;
    padding-right: 20%;
  }
}
@media (min-width: 1151px) {
  .HeroDecider--lead {
    padding-left: 25%;
    padding-right: 25%;
  }
}
@media (max-width: 1150px) {
  .HeroDecider--lead {
    font-size: 28px;
  }
}
@media (max-width: 740px) {
  .HeroDecider--lead {
    font-size: 22px;
  }
}
@media (max-width: 1150px) {
  .HeroDecider--lead {
    margin-bottom: 80px;
  }
}

.HeroDecider .Picture,
.HeroDecider--image::before {
  transition: transform 2000ms cubic-bezier(0.11, 0.74, 0.35, 0.92);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.HeroDecider:not(.is-inview) .Picture {
  transform: translate(20px, 20px);
}
.HeroDecider:not(.is-inview) .HeroDecider--image::before {
  transform: translate(-20px, -20px);
}

.HeroDeciderItem {
  display: none;
}
.HeroDeciderItem.is-visible {
  display: block;
}

.HeroDecider--radio {
  position: relative;
}
.HeroDecider--radio:first-of-type {
  margin: 0 12px 12px 0;
}
.HeroDecider--radio input {
  position: absolute !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: polygon(0 0) !important;
  clip-path: polygon(0 0) !important;
}
.HeroDecider--radio label {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.HeroDecider:not(.has-selection) .HeroDecider--radio:first-of-type .Button {
  background: #e30613;
  color: #ffffff;
  border-color: #e30613;
}
.HeroDecider:not(.has-selection) .HeroDecider--radio:first-of-type .Button:not(:disabled) {
  transition: all 400ms;
}
.HeroDecider:not(.has-selection) .HeroDecider--radio:first-of-type .Button:not(:disabled):hover {
  border-color: rgb(202.1566523605, 5.3433476395, 16.9206008584);
}
.HeroDecider:not(.has-selection) .HeroDecider--radio:first-of-type .Button:not(:disabled):hover {
  background-color: rgb(202.1566523605, 5.3433476395, 16.9206008584);
}
.HeroDecider:not(.has-selection) .HeroDecider--radio:first-of-type .Button:disabled {
  opacity: 0.5;
}
.HeroDecider:not(.has-selection) .HeroDecider--radio .Button {
  background: #179FD5;
  color: #ffffff;
  border-color: #179FD5;
}
.HeroDecider:not(.has-selection) .HeroDecider--radio .Button:not(:disabled) {
  transition: all 400ms;
}
.HeroDecider:not(.has-selection) .HeroDecider--radio .Button:not(:disabled):hover {
  border-color: rgb(20.5148305085, 141.8199152542, 189.9851694915);
}
.HeroDecider:not(.has-selection) .HeroDecider--radio .Button:not(:disabled):hover {
  background-color: rgb(20.5148305085, 141.8199152542, 189.9851694915);
}
.HeroDecider:not(.has-selection) .HeroDecider--radio .Button:disabled {
  opacity: 0.5;
}

.HeroDecider.has-selection .HeroDecider--radio input:checked ~ .Button {
  background: #e30613;
  color: #ffffff;
  border-color: #e30613;
}
.HeroDecider.has-selection .HeroDecider--radio input:checked ~ .Button:not(:disabled) {
  transition: all 400ms;
}
.HeroDecider.has-selection .HeroDecider--radio input:checked ~ .Button:not(:disabled):hover {
  border-color: rgb(202.1566523605, 5.3433476395, 16.9206008584);
}
.HeroDecider.has-selection .HeroDecider--radio input:checked ~ .Button:not(:disabled):hover {
  background-color: rgb(202.1566523605, 5.3433476395, 16.9206008584);
}
.HeroDecider.has-selection .HeroDecider--radio input:checked ~ .Button:disabled {
  opacity: 0.5;
}

.HeroHome {
  margin-bottom: 160px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  z-index: 0;
  max-height: 50vw;
  max-width: 1320px;
}
@media (max-width: 1150px) {
  .HeroHome {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .HeroHome {
    margin-bottom: 60px;
  }
}
@media (max-width: 740px) {
  .HeroHome {
    max-height: 200vw;
    padding-top: 0;
  }
}

.HeroHome--inner {
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 740px) {
  .HeroHome--inner {
    flex-wrap: wrap;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

.HeroHome--content {
  flex: 1 0 50%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  padding: clamp(24px, 3.2vw, 80px) clamp(24px, 5vw, 80px);
  background-color: #179FD5;
}
@media (max-width: 740px) {
  .HeroHome--content {
    flex: 1 0 100%;
    height: 100vw;
  }
}

.HeroHome--images {
  flex: 1 0 50%;
  position: relative;
  display: flex;
}
@media (max-width: 740px) {
  .HeroHome--images {
    flex: 1 0 100%;
    width: 100%;
    height: 100vw;
    margin-bottom: 75px;
  }
}
.HeroHome--images .HeroHome--images--pictureWrapper {
  z-index: 5;
}
.HeroHome--images .HeroHome--images--pictureWrapper .Picture {
  border-radius: 0;
}
@media (max-width: 740px) {
  .HeroHome--images .HeroHome--images--pictureWrapper .Picture {
    width: 100%;
    max-height: 40vh;
  }
}

.HeroHome--images--body {
  position: relative;
  width: 100%;
}

.HeroHome--images--item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.HeroHome--images--item:first-child {
  position: relative;
}
@media (max-width: 740px) {
  .HeroHome--images--item {
    width: 100%;
  }
}

.HeroHome--images--item {
  z-index: 0;
  opacity: 0;
}
.HeroHome--images--item.is-before-visible {
  opacity: 1;
}
.HeroHome--images--item:nth-of-type(odd).is-before-visible img {
  scale: 1.25;
}
.HeroHome--images--item:nth-of-type(odd).is-visible img {
  animation: scale-up 4000ms forwards cubic-bezier(0.215, 0.61, 0.355, 1);
}
.HeroHome--images--item.is-visible {
  z-index: 1;
  opacity: 1;
}
.HeroHome--images--item.is-visible .HeroHome--images--pictureWrapper {
  animation: fade-in 1000ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.HeroHome--title {
  font-weight: 500;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.1;
  margin-bottom: clamp(24px, 3vw, 50px);
  color: #ffffff;
}
@media (max-width: 740px) {
  .HeroHome--title {
    font-size: clamp(30px, 6vw, 56px);
  }
}
.HeroHome--title .HeroHome--title--block {
  display: block;
  min-height: clamp(40px, 3.6vw, 58px);
}
@media (max-width: 740px) {
  .HeroHome--title .HeroHome--title--block {
    min-height: clamp(40px, 7vw, 64px);
  }
}
.HeroHome--title em {
  color: #e5e5e5;
  position: relative;
}
.HeroHome:not(.is-inview) .HeroHome--title > * {
  opacity: 0;
}
.HeroHome--title > * {
  transition: opacity 500ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  opacity: 1;
}
.HeroHome--title > :nth-child(1) {
  transition-delay: 0ms;
}
.HeroHome--title > :nth-child(2) {
  transition-delay: 300ms;
}
.HeroHome--title > :nth-child(3) {
  transition-delay: 600ms;
}
.HeroHome--title > :nth-child(4) {
  transition-delay: 900ms;
}
.HeroHome--title > :nth-child(5) {
  transition-delay: 1200ms;
}

.HeroHome--buttons .Button.fill.red {
  margin: 0 12px 12px 0;
}
@media (max-width: 400px) {
  .HeroHome--buttons .Button.fill.red {
    margin-right: 4px;
  }
}

.HeroHome-AnimatedWord--wrapper {
  position: relative;
  display: inline-flex;
  width: 100%;
}

.js-animated-headline .HeroHome-AnimatedWord {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: inline-block;
  white-space: nowrap;
}
.js-animated-headline .is-visible {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: #ffffff;
}

.text-anim--slide {
  --text-anim-duration: 750ms;
  --text-anim-pause: 2.5s;
}
.text-anim--slide .HeroHome-AnimatedWord--wrapper {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.text-anim--slide .HeroHome-AnimatedWord {
  height: clamp(40px, 3.6vw, 58px);
  transform: translateY(-100%);
}
@media (max-width: 740px) {
  .text-anim--slide .HeroHome-AnimatedWord {
    height: clamp(40px, 7vw, 64px);
  }
}
.text-anim--slide .is-hidden,
.text-anim--slide .is-visible {
  animation-duration: var(--text-anim-duration);
  animation-timing-function: var(--ease-out-back);
}
.text-anim--slide .is-visible {
  animation-name: text-anim-slide-in;
  animation-fill-mode: forwards;
  animation-delay: 200ms;
}
.text-anim--slide .is-hidden {
  animation-name: text-anim-slide-out;
  animation-delay: 0;
}

@keyframes text-anim-slide-in {
  from {
    transform: translateX(-100%);
    opacity: 0.25;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes text-anim-slide-out {
  from {
    transform: translateX(0%);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes background-position {
  from {
    background-position: 100%;
  }
  to {
    background-position: 0 100%;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes scale-up {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.25;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .HeroHome-AnimatedWord.is-hidden {
    display: none;
  }
  .HeroHome-AnimatedWord.is-visible {
    color: #179FD5;
    background: none;
  }
}
.HeroLarge {
  margin-bottom: 160px;
  display: flex;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
  padding-top: 48px;
  max-width: 1240px;
}
@media (max-width: 1150px) {
  .HeroLarge {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .HeroLarge {
    margin-bottom: 60px;
  }
}

.HeroLarge--top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 740px) {
  .HeroLarge--top {
    flex-wrap: wrap-reverse;
    margin-bottom: 0;
  }
}

.HeroLarge--content {
  margin-right: 40px;
  flex: 1;
}
@media (max-width: 900px) {
  .HeroLarge--content {
    margin-left: 24px;
  }
}
@media (max-width: 400px) {
  .HeroLarge--content {
    margin-right: 0;
  }
}

.HeroLarge--image {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-right: 100px;
}
@media (max-width: 1150px) {
  .HeroLarge--image {
    padding-right: 50px;
  }
}
@media (max-width: 740px) {
  .HeroLarge--image {
    width: 100%;
    padding-right: 0;
    margin-bottom: 57px;
  }
}
.HeroLarge--image::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -100px;
  width: 80%;
  height: 85%;
  border-radius: 12px;
  background-color: #179FD5;
}
@media (max-width: 1150px) {
  .HeroLarge--image::before {
    bottom: -50px;
  }
}
@media (max-width: 740px) {
  .HeroLarge--image::before {
    right: -24px;
    bottom: -32px;
    border-radius: 8px;
  }
}
.HeroLarge--image > .Picture {
  width: 35vw;
}
@media (max-width: 740px) {
  .HeroLarge--image > .Picture {
    width: 100%;
  }
}
.HeroLarge--image .Picture {
  max-width: 600px;
  height: 0;
  padding-top: 100% !important;
}
@media (max-width: 740px) {
  .HeroLarge--image {
    width: 100%;
    max-width: 380px;
  }
}

.HeroLarge--title {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 40px;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (max-width: 1150px) {
  .HeroLarge--title {
    font-size: 44px;
  }
}
@media (max-width: 740px) {
  .HeroLarge--title {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media (max-width: 740px) {
  .HeroLarge--title {
    margin-bottom: 0.5em;
  }
}

.HeroLarge--buttons .Button.fill.red {
  margin: 0 12px 12px 0;
}
@media (max-width: 400px) {
  .HeroLarge--buttons .Button.fill.red {
    margin-right: 4px;
  }
}

.HeroLarge--lead {
  margin-top: 80px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 32px;
  line-height: 1.4;
}
@media (min-width: 741px) {
  .HeroLarge--lead {
    padding-left: 20%;
    padding-right: 20%;
  }
}
@media (min-width: 1151px) {
  .HeroLarge--lead {
    padding-left: 25%;
    padding-right: 25%;
  }
}
@media (max-width: 1150px) {
  .HeroLarge--lead {
    font-size: 28px;
  }
}
@media (max-width: 740px) {
  .HeroLarge--lead {
    font-size: 22px;
  }
}
@media (max-width: 1150px) {
  .HeroLarge--lead {
    margin-top: 32px;
  }
}

.HeroLarge .Picture,
.HeroLarge--image::before {
  transition: transform 2000ms cubic-bezier(0.11, 0.74, 0.35, 0.92);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.HeroLarge:not(.is-inview) .Picture {
  transform: translate(20px, 20px);
}
.HeroLarge:not(.is-inview) .HeroLarge--image::before {
  transform: translate(-20px, -20px);
}

.HeroMosaic {
  margin-bottom: 160px;
  display: flex;
}
@media (max-width: 1150px) {
  .HeroMosaic {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .HeroMosaic {
    margin-bottom: 60px;
  }
}
@media (max-width: 740px) {
  .HeroMosaic {
    flex-wrap: wrap;
  }
}

.HeroMosaic--col-left {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 0 50%;
  margin-right: 30px;
}
@media (max-width: 740px) {
  .HeroMosaic--col-left {
    order: 2;
    flex: 1 0 100%;
    margin-right: 0;
  }
}

.HeroMosaic--col-right {
  position: relative;
}
@media (max-width: 740px) {
  .HeroMosaic--col-right {
    order: 1;
    flex: 1 0 100%;
  }
}

@media (min-width: 901px) {
  .HeroMosaic--content {
    margin-left: 8vw;
  }
}

.HeroMosaic--title {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.1;
  width: 90%;
  max-width: 700px;
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .HeroMosaic--title {
    font-size: 44px;
  }
}
@media (max-width: 740px) {
  .HeroMosaic--title {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media (max-width: 740px) {
  .HeroMosaic--title {
    width: 100%;
    margin-bottom: 16px;
  }
}

.HeroMosaic--cta {
  display: inline-block;
}

.HeroMosaic--image--medium {
  height: 20vw;
  width: 20vw;
  position: absolute;
  right: 0;
  bottom: -35%;
  max-width: 400px;
  max-height: 400px;
  border-radius: 12px;
}
@media (max-width: 740px) {
  .HeroMosaic--image--medium {
    display: none;
  }
}
.HeroMosaic--image--medium .Picture {
  width: 100%;
  height: 100%;
}

.HeroMosaic--image--big {
  height: 34vw;
  width: 34vw;
  max-height: 800px;
  max-width: 780px;
  border-radius: 12px;
  margin-bottom: 30px;
}
@media (max-width: 740px) {
  .HeroMosaic--image--big {
    width: 100%;
    height: 327px;
    margin-bottom: 18px;
  }
}
.HeroMosaic--image--big .Picture {
  width: 100%;
  height: 100%;
}

.HeroMosaic--image--small {
  height: 10vw;
  width: 10vw;
  position: absolute;
  max-height: 200px;
  max-width: 200px;
  border-radius: 12px;
}
@media (max-width: 740px) {
  .HeroMosaic--image--small {
    display: none;
  }
}
.HeroMosaic--image--small .Picture {
  width: 100%;
  height: 100%;
}

.HeroMosaic--sticky-cta {
  transition: transform 300ms ease-in-out;
}
@media (min-width: 741px) {
  .HeroMosaic--sticky-cta {
    display: none !important;
  }
}
@media (max-width: 740px) {
  .HeroMosaic--sticky-cta {
    position: fixed !important;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    left: 50%;
    bottom: 24px;
    z-index: 8;
    transform: translate(-50%, 0);
  }
}
.HeroMosaic--sticky-cta:not(.is-visible) {
  transform: translate(-50%, 200%);
}
.HeroMosaic--sticky-cta .Button {
  box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.1);
}

.HeroTeaserGridWrapper {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .HeroTeaserGridWrapper {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .HeroTeaserGridWrapper {
    margin-bottom: 60px;
  }
}
.HeroTeaserGridWrapper[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .HeroTeaserGridWrapper[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .HeroTeaserGridWrapper[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.HeroTeaserGridWrapper[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .HeroTeaserGridWrapper[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .HeroTeaserGridWrapper[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.HeroTeaserGridWrapper[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .HeroTeaserGridWrapper[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .HeroTeaserGridWrapper[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
@media (min-width: 901px) {
  .HeroTeaserGridWrapper {
    margin-top: -32px;
  }
}

.HeroTeaserGrid {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 576px);
  gap: 40px;
  z-index: 11;
}
.HeroTeaserGrid .BackgroundImageTeaser:first-of-type {
  grid-column: 1/span 2;
}
@media (max-width: 900px) {
  .HeroTeaserGrid {
    grid-template-rows: repeat(2, 484px);
    position: static;
    padding-top: 40px;
    gap: 16px;
  }
}
@media (max-width: 740px) {
  .HeroTeaserGrid {
    grid-template-columns: 1fr;
    grid-template-rows: 484px 343px 343px;
  }
  .HeroTeaserGrid .BackgroundImageTeaser:first-of-type {
    grid-column: 1;
  }
}
.nav-flyout-open .HeroTeaserGrid, .modal-open .HeroTeaserGrid {
  z-index: 8;
}

.HeroTeaserGrid--title {
  position: absolute !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: polygon(0 0) !important;
  clip-path: polygon(0 0) !important;
}

.HeroText {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 80px;
  padding-top: 100px;
}
@media (max-width: 740px) {
  .HeroText {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .HeroText {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .HeroText {
    margin-bottom: 40px;
  }
}
.HeroText[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .HeroText[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .HeroText[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.HeroText[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .HeroText[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .HeroText[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.HeroText[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .HeroText[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .HeroText[data-component-gap=small] {
    margin-bottom: 20px;
  }
}

.HeroText--content {
  grid-column: 3/span 8;
}
@media (max-width: 900px) {
  .HeroText--content {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .HeroText--content {
    grid-column: 1/span 4;
  }
}

.HeroText--title {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.1;
}
@media (max-width: 1150px) {
  .HeroText--title {
    font-size: 44px;
  }
}
@media (max-width: 740px) {
  .HeroText--title {
    font-size: 36px;
    line-height: 1.2;
  }
}
.HeroText:has(.HeroText--lead) .HeroText--title {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .HeroText:has(.HeroText--lead) .HeroText--title {
    margin-bottom: 40px;
  }
}
@media (max-width: 740px) {
  .HeroText:has(.HeroText--lead) .HeroText--title {
    margin-bottom: 0.5em;
  }
}

.HeroText--buttons {
  margin-bottom: 6em;
}

.HeroText--lead {
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1150px) {
  .HeroText--lead {
    font-size: 28px;
  }
}
@media (max-width: 740px) {
  .HeroText--lead {
    font-size: 22px;
  }
}

.VideoHero {
  margin-bottom: 160px;
  padding-top: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
}
@media (max-width: 1150px) {
  .VideoHero {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .VideoHero {
    margin-bottom: 60px;
  }
}
@media (max-width: 740px) {
  .VideoHero {
    padding-top: 0;
  }
}

.VideoHero--inner {
  display: flex;
  flex-flow: row nowrap;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 740px) {
  .VideoHero--inner {
    flex-direction: column;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

.VideoHero--content {
  flex: 1 0 50%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: clamp(40px, 5vw, 80px) clamp(24px, 5vw, 80px) clamp(40px, 6.5vw, 160px);
  background-color: #179FD5;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media (max-width: 740px) {
  .VideoHero--content {
    flex-basis: 100%;
  }
}

.VideoHero--title {
  font-weight: 500;
  -webkit-hyphens: auto;
  hyphens: auto;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.1;
  color: #ffffff;
}
@media (max-width: 740px) {
  .VideoHero--title {
    font-size: 35px;
  }
}

.VideoHero--buttons {
  margin-top: clamp(24px, 3vw, 50px);
}
.VideoHero--buttons .Button.fill.red {
  margin: 0 12px 12px 0;
}
@media (max-width: 400px) {
  .VideoHero--buttons .Button.fill.red {
    margin-right: 4px;
  }
}

.VideoHero--media {
  flex: 1 0 50%;
  aspect-ratio: 1/1;
}
.VideoHero--media video {
  width: 100%;
}
@media (max-width: 740px) {
  .VideoHero--media {
    flex-basis: 100%;
  }
}

.BackgroundImageTeaser {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 12px;
}

.BackgroundImageTeaser--image .Picture {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.BackgroundImageTeaser--image .Picture::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.12;
}

.BackgroundImageTeaser--content {
  position: relative;
  display: flex;
  height: 100%;
  padding: 32px;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  color: #ffffff;
}
@media (min-width: 901px) {
  [data-variant=fullwidth] .BackgroundImageTeaser--content {
    padding: 60px;
  }
}

.BackgroundImageTeaser--cta .Button {
  background: #ffffff;
}

.BackgroundImageTeaser--title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 0.75em;
}
@media (max-width: 1150px) {
  .BackgroundImageTeaser--title {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .BackgroundImageTeaser--title {
    font-size: 24px;
  }
}
[data-variant=fullwidth] .BackgroundImageTeaser--title {
  font-size: 56px;
  margin-bottom: 0.25em;
}
@media (max-width: 740px) {
  [data-variant=fullwidth] .BackgroundImageTeaser--title {
    font-size: 24px;
  }
}

.BackgroundImageTeaser--text {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.25em;
}
@media (max-width: 740px) {
  .BackgroundImageTeaser--text {
    font-size: 14px;
  }
}
[data-variant=fullwidth] .BackgroundImageTeaser--text {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  font-weight: normal;
}
@media (max-width: 740px) {
  [data-variant=fullwidth] .BackgroundImageTeaser--text {
    font-size: 18px;
  }
}

.BrandTeaser {
  margin-bottom: 160px;
  display: flex;
  justify-content: flex-end;
  flex-flow: row-reverse;
  align-items: center;
}
@media (max-width: 1150px) {
  .BrandTeaser {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .BrandTeaser {
    margin-bottom: 60px;
  }
}
.BrandTeaser[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .BrandTeaser[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .BrandTeaser[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.BrandTeaser[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .BrandTeaser[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .BrandTeaser[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.BrandTeaser[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .BrandTeaser[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .BrandTeaser[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
@media (max-width: 740px) {
  .BrandTeaser {
    flex-wrap: wrap-reverse;
  }
}
@media (max-width: 740px) {
  .BrandTeaser.small {
    flex-wrap: wrap-reverse;
  }
  .BrandTeaser.small .BrandTeaser--image {
    max-width: 250px;
  }
}
@media (min-width: 741px) {
  .BrandTeaser.small.left .BrandTeaser--image > .Picture {
    width: 320px;
    padding-top: 361.6px !important;
    margin-left: calc(min(35vw, 960px) - 320px);
  }
}
@media (min-width: 741px) and (max-width: 740px) {
  .BrandTeaser.small.left .BrandTeaser--image > .Picture {
    width: 100%;
  }
}
@media (min-width: 741px) {
  .BrandTeaser.small.left .BrandTeaser--image::before {
    left: calc(min(35vw, 960px) - 320px + 25px);
    bottom: -75px;
    width: 320px;
  }
}
@media (min-width: 741px) and (max-width: 1150px) {
  .BrandTeaser.small.left .BrandTeaser--image::before {
    left: calc(min(35vw, 960px) - 320px);
    bottom: -50px;
  }
}
@media (min-width: 1151px) {
  .BrandTeaser.small.left .BrandTeaser--image > .Picture {
    margin-left: calc(min(25vw, 960px) - 320px);
  }
  .BrandTeaser.small.left .BrandTeaser--image::before {
    left: calc(min(25vw, 960px) - 320px + 25px);
  }
}
@media (min-width: 741px) {
  .BrandTeaser.small.right .BrandTeaser--image > .Picture {
    width: 320px;
    padding-top: 361.6px !important;
    margin-right: calc(min(35vw, 960px) - 320px);
  }
}
@media (min-width: 741px) and (max-width: 740px) {
  .BrandTeaser.small.right .BrandTeaser--image > .Picture {
    width: 100%;
  }
}
@media (min-width: 741px) {
  .BrandTeaser.small.right .BrandTeaser--image::before {
    right: calc(min(35vw, 960px) - 320px + 25px);
    bottom: -75px;
    width: 320px;
  }
}
@media (min-width: 741px) and (max-width: 1150px) {
  .BrandTeaser.small.right .BrandTeaser--image::before {
    right: calc(min(35vw, 960px) - 320px);
    bottom: -50px;
  }
}
@media (min-width: 1151px) {
  .BrandTeaser.small.right .BrandTeaser--image > .Picture {
    margin-right: calc(min(25vw, 960px) - 320px);
  }
  .BrandTeaser.small.right .BrandTeaser--image::before {
    right: calc(min(25vw, 960px) - 320px + 25px);
  }
}

.BrandTeaser--image {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-left: 100px;
}
@media (max-width: 1150px) {
  .BrandTeaser--image {
    padding-left: 50px;
  }
}
@media (max-width: 740px) {
  .BrandTeaser--image {
    width: 100%;
    padding-left: 0;
    margin-bottom: 57px;
  }
}
.BrandTeaser--image::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100px;
  width: 80%;
  height: 85%;
  border-radius: 12px;
  background-color: #179FD5;
}
@media (max-width: 1150px) {
  .BrandTeaser--image::before {
    bottom: -50px;
  }
}
@media (max-width: 740px) {
  .BrandTeaser--image::before {
    left: -24px;
    bottom: -32px;
    border-radius: 8px;
  }
}
.BrandTeaser--image > .Picture {
  width: 35vw;
}
@media (max-width: 740px) {
  .BrandTeaser--image > .Picture {
    width: 100%;
  }
}
@media (max-width: 740px) {
  .BrandTeaser--image {
    max-width: 380px;
  }
}

.BrandTeaser--content {
  overflow: hidden;
  margin-left: 80px;
}
@media (min-width: 901px) {
  .BrandTeaser--content {
    width: 40%;
  }
}
@media (max-width: 1150px) {
  .BrandTeaser--content {
    margin-left: 40px;
  }
}
@media (max-width: 740px) {
  .BrandTeaser--content {
    margin-left: 0;
    width: 100%;
  }
}

.BrandTeaser--title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 22px;
}
@media (max-width: 1150px) {
  .BrandTeaser--title {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .BrandTeaser--title {
    font-size: 24px;
  }
}

.BrandTeaser--text {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #737273;
  margin-bottom: 32px;
}
@media (max-width: 740px) {
  .BrandTeaser--text {
    font-size: 16px;
  }
}
@media (max-width: 740px) {
  .BrandTeaser--text {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
}
@media (max-width: 740px) and (max-width: 740px) {
  .BrandTeaser--text {
    font-size: 14px;
  }
}

.BrandTeaser--cta {
  align-self: flex-start;
}

.BrandTeaser.right {
  flex-direction: row;
}
.BrandTeaser.right .BrandTeaser--content {
  margin-right: 40px;
}
.BrandTeaser.right .BrandTeaser--image {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-right: 100px;
  padding-left: 0;
}
@media (max-width: 1150px) {
  .BrandTeaser.right .BrandTeaser--image {
    padding-right: 50px;
  }
}
@media (max-width: 740px) {
  .BrandTeaser.right .BrandTeaser--image {
    width: 100%;
    padding-right: 0;
    margin-bottom: 57px;
  }
}
.BrandTeaser.right .BrandTeaser--image::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -100px;
  width: 80%;
  height: 85%;
  border-radius: 12px;
  background-color: #179FD5;
}
@media (max-width: 1150px) {
  .BrandTeaser.right .BrandTeaser--image::before {
    bottom: -50px;
  }
}
@media (max-width: 740px) {
  .BrandTeaser.right .BrandTeaser--image::before {
    right: -24px;
    bottom: -32px;
    border-radius: 8px;
  }
}
.BrandTeaser.right .BrandTeaser--image > .Picture {
  width: 35vw;
}
@media (max-width: 740px) {
  .BrandTeaser.right .BrandTeaser--image > .Picture {
    width: 100%;
  }
}
.BrandTeaser.right .BrandTeaser--image::before {
  left: unset;
}

.BrandTeaser .BrandTeaser--image .Picture,
.BrandTeaser.right .BrandTeaser--image .Picture {
  height: 0;
  padding-top: 113.15% !important;
}
@media (min-width: 1151px) {
  .BrandTeaser .BrandTeaser--image .Picture,
  .BrandTeaser.right .BrandTeaser--image .Picture {
    width: 35vw;
    max-width: 600px;
  }
}
@media (max-width: 1150px) {
  .BrandTeaser .BrandTeaser--image .Picture,
  .BrandTeaser.right .BrandTeaser--image .Picture {
    width: 40vw;
  }
}
@media (max-width: 740px) {
  .BrandTeaser .BrandTeaser--image .Picture,
  .BrandTeaser.right .BrandTeaser--image .Picture {
    width: 100%;
  }
}

.BrandTeaser--image .Picture,
.BrandTeaser--image--container::before {
  transition: transform 2000ms cubic-bezier(0.11, 0.74, 0.35, 0.92);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.BrandTeaser:not(.is-inview) .BrandTeaser--image .Picture {
  transform: translate(-20px, 20px);
}
.BrandTeaser:not(.is-inview) .BrandTeaser--image--container::before {
  transform: translate(20px, -20px);
}
.BrandTeaser:not(.is-inview).right .Picture {
  transform: translate(20px, 20px);
}

.CardTeaser {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  overflow: visible;
  padding-bottom: 40px;
  margin-bottom: 120px;
}
@media (max-width: 740px) {
  .CardTeaser {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .CardTeaser {
    margin-bottom: 80px;
  }
}

.CardTeaser--container {
  grid-column: 3/span 8;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.06), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
}
@media (max-width: 900px) {
  .CardTeaser--container {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .CardTeaser--container {
    grid-column: 1/span 4;
  }
}
@media (max-width: 740px) {
  .CardTeaser--container {
    padding: 24px;
  }
}

@media (min-width: 741px) {
  .CardTeaser--inner {
    display: flex;
    gap: 24px;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
  }
}

@media (min-width: 741px) {
  .CardTeaser--content {
    flex-grow: 1;
    max-width: 80%;
  }
}

.CardTeaser--title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  -webkit-hyphens: auto;
  hyphens: auto;
  margin-bottom: 1em;
}
@media (max-width: 1150px) {
  .CardTeaser--title {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .CardTeaser--title {
    font-size: 24px;
  }
}

.CardTeaser--text {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #737273;
  margin-bottom: 32px;
}
@media (max-width: 740px) {
  .CardTeaser--text {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .CardTeaser--text {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

@media (min-width: 741px) {
  .CardTeaser--icon {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 740px) {
  .CardTeaser--icon {
    margin-bottom: 29px;
  }
}

.CardTeaser--phone-link .Button.link.blue {
  font-size: 18px;
}

.CardTeaser--icon .Icon,
.CardTeaser--icon .Graphic {
  height: 60px;
  width: 60px;
  color: #2FB4E9;
}
@media (max-width: 740px) {
  .CardTeaser--icon .Icon,
  .CardTeaser--icon .Graphic {
    height: 40px;
    width: 40px;
  }
}

.CardTeaserGrid {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 160px;
}
@media (max-width: 740px) {
  .CardTeaserGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .CardTeaserGrid {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .CardTeaserGrid {
    margin-bottom: 60px;
  }
}
.CardTeaserGrid[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .CardTeaserGrid[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .CardTeaserGrid[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.CardTeaserGrid[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .CardTeaserGrid[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .CardTeaserGrid[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.CardTeaserGrid[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .CardTeaserGrid[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .CardTeaserGrid[data-component-gap=small] {
    margin-bottom: 20px;
  }
}

.CardTeaserGrid--container {
  grid-column: 1/span 12;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 28px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 900px) {
  .CardTeaserGrid--container {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .CardTeaserGrid--container {
    grid-column: 1/span 4;
  }
}
@media (max-width: 900px) {
  .CardTeaserGrid--container {
    grid-template-columns: repeat(auto-fit, minmax(326px, 1fr));
  }
}
@media (max-width: 740px) {
  .CardTeaserGrid--container {
    gap: 16px;
    padding-top: 24px;
  }
}

.CardTeaserSlider {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  margin-bottom: 160px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  max-width: unset;
  margin-top: -40px;
}
@media (max-width: 1150px) {
  .CardTeaserSlider {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .CardTeaserSlider {
    margin-bottom: 60px;
  }
}
.CardTeaserSlider[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .CardTeaserSlider[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .CardTeaserSlider[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.CardTeaserSlider[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .CardTeaserSlider[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .CardTeaserSlider[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.CardTeaserSlider[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .CardTeaserSlider[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .CardTeaserSlider[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
@media (max-width: 740px) {
  .CardTeaserSlider {
    grid-template-columns: repeat(4, 1fr);
  }
}

.CardTeaserSlider--container {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -webkit-grab;
  /* (Optional) Apply a "closed-hand" cursor during drag operation. */
  grid-column: 1/span 12;
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 40px;
  margin-bottom: 40px;
}
.CardTeaserSlider--container:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
@media (max-width: 900px) {
  .CardTeaserSlider--container {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .CardTeaserSlider--container {
    grid-column: 1/span 4;
  }
}
@media (max-width: 740px) {
  .CardTeaserSlider--container {
    margin-bottom: 32px;
  }
}
.CardTeaserSlider--container:active {
  cursor: grabbing;
}

.CardTeaserSlider--wrapper {
  display: flex;
  height: 100%;
  transform: translate3d(0px, 0, 0);
}

.CardTeaserSlider--slide {
  position: relative;
  z-index: 30;
  display: flex;
  width: 30%;
  min-height: 100%;
  flex: 1;
  align-items: stretch;
  margin-right: 28px;
  will-change: transform;
}
@media (min-width: 1440px) {
  .CardTeaserSlider--slide {
    width: 25%;
  }
}
@media (max-width: 1150px) {
  .CardTeaserSlider--slide {
    width: 50%;
  }
}
@media (max-width: 740px) {
  .CardTeaserSlider--slide {
    width: 100%;
    margin-right: 16px;
  }
}

.CardTeaserSlider .flickity-page-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.CardTeaserSlider .flickity-page-dots.is-hidden {
  display: none;
}
.CardTeaserSlider .flickity-page-dots > li {
  margin-right: 8px;
  background-color: #e5e5e5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.CardTeaserSlider .flickity-page-dots > li.is-selected {
  background-color: #005288;
}
.CardTeaserSlider .flickity-page-dots > li:last-of-type {
  margin-right: 0;
}

.CardTeaserSlider--cta {
  display: flex;
  justify-content: center;
}

.LargeTeaser {
  margin-bottom: 160px;
  position: relative;
  text-align: center;
  height: 512px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1em;
  border-radius: 12px;
}
@media (max-width: 1150px) {
  .LargeTeaser {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .LargeTeaser {
    margin-bottom: 60px;
  }
}
@media (max-width: 740px) {
  .LargeTeaser {
    height: 409px;
  }
}
.LargeTeaser .Picture {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.LargeTeaser .Picture::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.12;
}

.LargeTeaser--title {
  font-weight: 500;
  font-size: 54px;
  line-height: 1.1;
  position: relative;
  max-width: 66.6%;
  max-width: 1000px;
  margin-bottom: 40px;
  color: #ffffff;
  z-index: 2;
}
@media (max-width: 1150px) {
  .LargeTeaser--title {
    font-size: 40px;
  }
}
@media (max-width: 740px) {
  .LargeTeaser--title {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media (max-width: 580px) {
  .LargeTeaser--title {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
@media (max-width: 1150px) {
  .LargeTeaser--title {
    max-width: 80%;
  }
}
@media (max-width: 740px) {
  .LargeTeaser--title {
    max-width: 100%;
  }
}

.LargeTeaser--cta {
  position: relative;
  z-index: 2;
}

.Picture img,
.Picture::after {
  transition: all 1.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.LargeTeaser--cta:hover + .Picture img,
.LargeTeaser--cta:focus + .Picture img {
  transform: scale(1.05);
}
.LargeTeaser--cta:hover + .Picture::after,
.LargeTeaser--cta:focus + .Picture::after {
  opacity: 0;
}

.MediumTeaserWrapper:not(.inline) {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
}
.MediumTeaserWrapper:not(.inline) .MediumTeaser {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  margin-bottom: 160px;
}
@media (max-width: 740px) {
  .MediumTeaserWrapper:not(.inline) .MediumTeaser {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .MediumTeaserWrapper:not(.inline) .MediumTeaser {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .MediumTeaserWrapper:not(.inline) .MediumTeaser {
    margin-bottom: 60px;
  }
}
.MediumTeaserWrapper:not(.inline) .MediumTeaser[data-component-gap=large] {
  margin-bottom: 160px;
}
@media (max-width: 1150px) {
  .MediumTeaserWrapper:not(.inline) .MediumTeaser[data-component-gap=large] {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .MediumTeaserWrapper:not(.inline) .MediumTeaser[data-component-gap=large] {
    margin-bottom: 60px;
  }
}
.MediumTeaserWrapper:not(.inline) .MediumTeaser[data-component-gap=medium] {
  margin-bottom: 80px;
}
@media (max-width: 1150px) {
  .MediumTeaserWrapper:not(.inline) .MediumTeaser[data-component-gap=medium] {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .MediumTeaserWrapper:not(.inline) .MediumTeaser[data-component-gap=medium] {
    margin-bottom: 40px;
  }
}
.MediumTeaserWrapper:not(.inline) .MediumTeaser[data-component-gap=small] {
  margin-bottom: 40px;
}
@media (max-width: 1150px) {
  .MediumTeaserWrapper:not(.inline) .MediumTeaser[data-component-gap=small] {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .MediumTeaserWrapper:not(.inline) .MediumTeaser[data-component-gap=small] {
    margin-bottom: 20px;
  }
}
.MediumTeaserWrapper:not(.inline) .MediumTeaser--container {
  grid-column: 2/span 10;
}
@media (max-width: 900px) {
  .MediumTeaserWrapper:not(.inline) .MediumTeaser--container {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .MediumTeaserWrapper:not(.inline) .MediumTeaser--container {
    grid-column: 1/span 4;
  }
}

@media (min-width: 741px) {
  .MediumTeaser--container {
    display: flex;
    align-items: center;
  }
}

.MediumTeaser--image .Picture {
  width: 322px;
  height: 322px;
}
@media (max-width: 900px) {
  .MediumTeaser--image .Picture {
    height: 260px;
    width: 260px;
  }
}
@media (max-width: 740px) {
  .MediumTeaser--image {
    margin-bottom: 24px;
  }
  .MediumTeaser--image .Picture {
    width: 100%;
    height: 211px;
  }
}

.MediumTeaser--content {
  max-width: 750px;
}
@media (min-width: 741px) {
  .MediumTeaser--content {
    margin-left: 40px;
  }
}

.MediumTeaser--title {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
@media (max-width: 1150px) {
  .MediumTeaser--title {
    font-size: 26px;
  }
}
@media (max-width: 740px) {
  .MediumTeaser--title {
    font-size: 24px;
  }
}

.MediumTeaser--text {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #737273;
  margin-bottom: 28px;
}
@media (max-width: 740px) {
  .MediumTeaser--text {
    font-size: 16px;
  }
}
@media (max-width: 740px) {
  .MediumTeaser--text {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 740px) and (max-width: 740px) {
  .MediumTeaser--text {
    font-size: 14px;
  }
}

.MediumTeaserSlider {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
  margin-bottom: 160px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
}
@media (max-width: 1150px) {
  .MediumTeaserSlider {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .MediumTeaserSlider {
    margin-bottom: 60px;
  }
}
@media (max-width: 740px) {
  .MediumTeaserSlider {
    grid-template-columns: repeat(4, 1fr);
  }
}
.MediumTeaserSlider .flickity-page-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.MediumTeaserSlider .flickity-page-dots.is-hidden {
  display: none;
}
.MediumTeaserSlider .flickity-page-dots > li {
  margin-right: 8px;
  background-color: #e5e5e5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.MediumTeaserSlider .flickity-page-dots > li.is-selected {
  background-color: #005288;
}
.MediumTeaserSlider .flickity-page-dots > li:last-of-type {
  margin-right: 0;
}
.MediumTeaserSlider .flickity-prev-next-button {
  height: 64px;
  width: 64px;
  position: absolute;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  margin-top: -32px;
  top: 50%;
}
.MediumTeaserSlider .flickity-prev-next-button[disabled] {
  opacity: 0;
}
@media (max-width: 1150px) {
  .MediumTeaserSlider .flickity-prev-next-button {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
}
.MediumTeaserSlider .flickity-prev-next-button.previous {
  left: -90px;
}
.MediumTeaserSlider .flickity-prev-next-button.previous::before {
  margin-left: -5px;
  transform: rotate(45deg);
}
.MediumTeaserSlider .flickity-prev-next-button.next {
  right: -90px;
}
.MediumTeaserSlider .flickity-prev-next-button.next::before {
  margin-left: -8px;
  transform: rotate(225deg);
}

.MediumTeaserSlider--slider {
  grid-column: 3/span 8;
  position: relative;
}
@media (max-width: 900px) {
  .MediumTeaserSlider--slider {
    grid-column: 1/span 12;
  }
}
@media (max-width: 740px) {
  .MediumTeaserSlider--slider {
    grid-column: 1/span 4;
  }
}

.MediumTeaserSlider--viewport {
  overflow: hidden;
}

.MediumTeaserSlider--wrapper {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}
.MediumTeaserSlider--wrapper > li {
  display: block;
  vertical-align: top;
  flex: 0 0 auto;
  width: 100%;
  width: calc((100% + 20px) / 1 - 20px);
  margin-right: 20px;
}
.MediumTeaserSlider--wrapper > li.is-slider-ready {
  visibility: hidden;
}
.MediumTeaserSlider--wrapper > li.was-visible, .MediumTeaserSlider--wrapper > li.is-visible {
  visibility: visible;
}