@charset "UTF-8";

/* src/styles/index.scss */
:root {
  --fluid-min: 375;
  --fluid-max: 1720;
  --container-max-width: 64rem;
  --grid-margin: 1.25rem;
  --grid-gutter: clamp(0.625rem, 1000 / (var(--fluid-max) - var(--fluid-min)) * 1vw + (var(--fluid-min) * 20 - var(--fluid-max) * 10) / (var(--fluid-min) - var(--fluid-max)) / 16 * 1rem, 1.25rem);
  --grid-max-width: calc(var(--container-max-width) - var(--grid-margin) * 2);
  --grid-columns: 12;
  --s-xs: 0.5rem;
  --s-s: 1rem;
  --s-m: 2rem;
  --s-l: 4rem;
  --s-xl: 8rem;
  --ff-primary: "roboto", sans-serif;
  --ff-secondary: "roboto-condensed", sans-serif;
  --ff-roboto: var(--ff-primary);
  --ff-roboto-condensed: var(--ff-secondary);
  --fs-base: 1rem;
  --fs-sm: 0.875rem;
  --fs-h1: 3rem;
  --fs-h2: 2rem;
  --fs-h3: 1.75rem;
  --fs-h4: 1.5rem;
  --fs-h5: 1.25rem;
  --fs-h6: 1rem;
  --fw-thin: 100;
  --fw-hairline: var(--fw-thin);
  --fw-xlight: 200;
  --fw-ultralight: var(--fw-xlight);
  --fw-light: 300;
  --fw-normal: 400;
  --fw-regular: var(--fw-normal);
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-demibold: var(--fw-semibold);
  --fw-bold: 700;
  --fw-xbold: 800;
  --fw-ultrabold: var(--fw-xbold);
  --fw-black: 900;
  --fw-heavy: var(--fw-black);
  --fw-xblack: 950;
  --fw-ultrablack: var(--fw-xblack);
  --c-light: #FFFFFF;
  --c-dark: #323D48;
  --c-grey: #5B6770;
  --c-grey-lightest: #F0F1F1;
  --c-grey-light: #C4C6C7;
  --c-primary: #0044A3;
  --c-primary-dark: #003682;
  --br-base: 0.25rem;
  --bs-base: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-in-out-custom: cubic-bezier(0.4, 0, 0.2, 1);
  --zi-navigation: 1000;
  --zi-scroll-down: 5000;
  --zi-modal: 10000;
  --zi-modal-state: 20000;
}
@font-face {
  font-family: "roboto";
  src: url("./fonts/roboto/roboto--300--normal.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "roboto";
  src: url("./fonts/roboto/roboto--300--italic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "roboto";
  src: url("./fonts/roboto/roboto--400--normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "roboto-condensed";
  src: url("./fonts/roboto-condensed/roboto-condensed--300--normal.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "roboto-condensed";
  src: url("./fonts/roboto-condensed/roboto-condensed--500--normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  padding: 0;
  margin: 0;
}
html,
body {
  min-height: 100%;
  height: auto;
}
body {
  width: 100vw;
  overflow-x: hidden;
  hyphens: auto;
  -webkit-hyphenate-character: "-";
  hyphenate-character: "-";
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}
canvas {
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
button {
  appearance: none;
  background: transparent;
  color: inherit;
  border: none;
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  text-wrap: balance;
}
p {
  overflow-wrap: break-word;
  text-wrap: pretty;
}
a {
  color: inherit;
}
body {
  position: relative;
  font-family: var(--ff-roboto);
  font-weight: var(--fw-light);
  font-size: var(--fs-base);
  font-style: normal;
  line-height: 1.5;
  color: var(--c-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--c-grey-lightest);
  min-height: 100vh;
}
body > main {
  flex-grow: 2;
}
main:has(.l-error) {
  display: flex;
}
img {
  height: auto;
}
::selection {
  color: var(--c-light);
  background-color: var(--c-primary);
}
.b-section {
  scroll-margin-top: var(--l-header-height);
}
@media (hover: hover) and (min-width: 768px) {
  a,
  button:enabled,
  input[type=range],
  input[type=checkbox],
  select {
    cursor: pointer;
  }
  a:focus-visible,
  button:enabled:focus-visible,
  input[type=range]:focus-visible,
  input[type=checkbox]:focus-visible,
  select:focus-visible {
    outline: 2px dashed var(--c-primary);
    outline-offset: 4px;
  }
}
[hidden] {
  display: none !important;
}
.container {
  max-width: var(--container-max-width);
  padding-inline: var(--grid-margin);
  margin-inline: auto;
}
.grid {
  display: grid;
  column-gap: var(--grid-gutter);
  grid-template-columns: repeat(var(--grid-columns), 1fr);
}
.grid.row-gap {
  row-gap: var(--grid-gutter);
}
.column {
  --xxxs: var(--grid-columns);
  --xxs: var(--xxxs);
  --xs: var(--xxs);
  --s: var(--xs);
  --m: var(--s);
  --l: var(--m);
  --xl: var(--l);
  --xxl: var(--xl);
  --xxxl: var(--xxl);
  --start: inherit;
  --xxxs-start: var(--start);
  --xxs-start: var(--xxxs-start);
  --xs-start: var(--xxs-start);
  --s-start: var(--xs-start);
  --m-start: var(--s-start);
  --l-start: var(--m-start);
  --xl-start: var(--l-start);
  --xxl-start: var(--xl-start);
  --xxxl-start: var(--xxl-start);
  grid-column: auto/span var(--xxxs);
  grid-column-start: var(--start);
}
@media all and (min-width: 0) {
  .column {
    grid-column: auto/span var(--xxxs);
    grid-column-start: var(--xxxs-start);
  }
}
@media all and (min-width: 320px) {
  .column {
    grid-column: auto/span var(--xxs);
    grid-column-start: var(--xxs-start);
  }
}
@media all and (min-width: 414px) {
  .column {
    grid-column: auto/span var(--xs);
    grid-column-start: var(--xs-start);
  }
}
@media all and (min-width: 560px) {
  .column {
    grid-column: auto/span var(--s);
    grid-column-start: var(--s-start);
  }
}
@media all and (min-width: 768px) {
  .column {
    grid-column: auto/span var(--m);
    grid-column-start: var(--m-start);
  }
}
@media all and (min-width: 1024px) {
  .column {
    grid-column: auto/span var(--l);
    grid-column-start: var(--l-start);
  }
}
@media all and (min-width: 1440px) {
  .column {
    grid-column: auto/span var(--xl);
    grid-column-start: var(--xl-start);
  }
}
@media all and (min-width: 1620px) {
  .column {
    grid-column: auto/span var(--xxl);
    grid-column-start: var(--xxl-start);
  }
}
.h-pb-0 {
  padding-bottom: none;
}
.h-pb-xs {
  padding-bottom: 0.5rem;
}
.h-pb-s {
  padding-bottom: 1rem;
}
.h-pb-m {
  padding-bottom: 2rem;
}
.h-pb-l {
  padding-bottom: 4rem;
}
.h-pb-xl {
  padding-bottom: 8rem;
}
@media all and (min-width: 1024px) {
  .h-pb-l-0 {
    padding-bottom: none;
  }
  .h-pb-l-xs {
    padding-bottom: 0.5rem;
  }
  .h-pb-l-s {
    padding-bottom: 1rem;
  }
  .h-pb-l-m {
    padding-bottom: 2rem;
  }
  .h-pb-l-l {
    padding-bottom: 4rem;
  }
  .h-pb-l-xl {
    padding-bottom: 8rem;
  }
}
.h-pt-0 {
  padding-top: none;
}
.h-pt-xs {
  padding-top: 0.5rem;
}
.h-pt-s {
  padding-top: 1rem;
}
.h-pt-m {
  padding-top: 2rem;
}
.h-pt-l {
  padding-top: 4rem;
}
.h-pt-xl {
  padding-top: 8rem;
}
@media all and (min-width: 1024px) {
  .h-pt-l-0 {
    padding-top: none;
  }
  .h-pt-l-xs {
    padding-top: 0.5rem;
  }
  .h-pt-l-s {
    padding-top: 1rem;
  }
  .h-pt-l-m {
    padding-top: 2rem;
  }
  .h-pt-l-l {
    padding-top: 4rem;
  }
  .h-pt-l-xl {
    padding-top: 8rem;
  }
}
.h-mb-0 {
  margin-bottom: none;
}
.h-mb-xs {
  margin-bottom: 0.5rem;
}
.h-mb-s {
  margin-bottom: 1rem;
}
.h-mb-m {
  margin-bottom: 2rem;
}
.h-mb-l {
  margin-bottom: 4rem;
}
.h-mb-xl {
  margin-bottom: 8rem;
}
@media all and (min-width: 1024px) {
  .h-mb-l-0 {
    margin-bottom: none;
  }
  .h-mb-l-xs {
    margin-bottom: 0.5rem;
  }
  .h-mb-l-s {
    margin-bottom: 1rem;
  }
  .h-mb-l-m {
    margin-bottom: 2rem;
  }
  .h-mb-l-l {
    margin-bottom: 4rem;
  }
  .h-mb-l-xl {
    margin-bottom: 8rem;
  }
}
.h-mt-0 {
  margin-top: none;
}
.h-mt-xs {
  margin-top: 0.5rem;
}
.h-mt-s {
  margin-top: 1rem;
}
.h-mt-m {
  margin-top: 2rem;
}
.h-mt-l {
  margin-top: 4rem;
}
.h-mt-xl {
  margin-top: 8rem;
}
@media all and (min-width: 1024px) {
  .h-mt-l-0 {
    margin-top: none;
  }
  .h-mt-l-xs {
    margin-top: 0.5rem;
  }
  .h-mt-l-s {
    margin-top: 1rem;
  }
  .h-mt-l-m {
    margin-top: 2rem;
  }
  .h-mt-l-l {
    margin-top: 4rem;
  }
  .h-mt-l-xl {
    margin-top: 8rem;
  }
}
.h-text-center {
  text-align: center;
}
.h-text-right {
  text-align: right;
}
.h-border-horizontal {
  display: block;
  height: 0.0625rem;
  background-color: var(--c-grey-lightest);
}
.h-box-shadow {
  box-shadow: var(--bs-base);
}
.h-block {
  display: block;
}
.h-clearfix {
  overflow: auto;
}
.h-clearfix::after {
  content: "";
  clear: both;
  display: table;
}
.h1,
.s-base h1 {
  font-size: var(--fs-h1);
}
.h2,
.s-base h2 {
  font-size: var(--fs-h2);
}
.h3,
.s-base h3 {
  font-size: var(--fs-h3);
}
.h4,
.s-base h4 {
  font-size: var(--fs-h4);
}
.h5,
.s-base h5 {
  font-size: var(--fs-h5);
}
.h6,
.s-base h6 {
  font-size: var(--fs-h6);
}
.h1,
.s-base h1,
.h2,
.s-base h2,
.h3,
.s-base h3,
.h4,
.s-base h4,
.h5,
.s-base h5,
.h6,
.s-base h6 {
  font-family: var(--ff-roboto-condensed);
  font-weight: var(--fw-light);
  text-transform: uppercase;
  line-height: 1.25;
}
.h1 strong,
.s-base h1 strong,
.h2 strong,
.s-base h2 strong,
.h3 strong,
.s-base h3 strong,
.h4 strong,
.s-base h4 strong,
.h5 strong,
.s-base h5 strong,
.h6 strong,
.s-base h6 strong {
  color: var(--c-primary);
  font-weight: var(--fw-medium);
}
.s-base ul {
  list-style: square;
}
.s-base ol {
  list-style: decimal;
}
.s-base li {
  padding-bottom: 0.5em;
}
.s-base li::marker {
  color: var(--c-primary);
}
.s-base ul li,
.s-base ol li {
  list-style-position: outside;
  margin-left: 1em;
}
.s-base a {
  text-decoration: underline;
}
.s-base blockquote {
  position: relative;
  position: relative;
  padding-top: 1em;
  padding-bottom: 2em;
  padding-left: 30px;
}
.s-base blockquote::before {
  content: "\201c";
  font-family: Georgia, serif;
  font-size: 20em;
  line-height: 1em;
  display: block;
  position: absolute;
  top: -0.15em;
  opacity: 0.25;
  left: -0.1em;
}
.s-base audio:not(:last-child),
.s-base blockquote:not(:last-child),
.s-base dl:not(:last-child),
.s-base figure:not(:last-child),
.s-base form:not(:last-child),
.s-base h1:not(:last-child),
.s-base h2:not(:last-child),
.s-base h3:not(:last-child),
.s-base h4:not(:last-child),
.s-base h5:not(:last-child),
.s-base h6:not(:last-child),
.s-base hr:not(:last-child),
.s-base ol:not(:last-child),
.s-base p:not(:last-child),
.s-base pre:not(:last-child),
.s-base table:not(:last-child),
.s-base ul:not(:last-child),
.s-base video:not(:last-child) {
  margin-bottom: 1rem;
}
.s-base audio:not(:first-child),
.s-base blockquote:not(:first-child),
.s-base figure:not(:first-child),
.s-base form:not(:first-child),
.s-base hr:not(:first-child),
.s-base table:not(:first-child),
.s-base video:not(:first-child) {
  margin-bottom: 1rem;
}
.s-base h1:not(:first-child),
.s-base h2:not(:first-child),
.s-base h3:not(:first-child),
.s-base h4:not(:first-child),
.s-base h5:not(:first-child),
.s-base h6:not(:first-child) {
  margin-bottom: 1rem;
}
.s-base--sm {
  font-size: var(--fs-sm);
  font-weight: var(--fw-normal);
}
.a-button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.5rem;
  font-family: var(--ff-roboto-condensed);
  text-transform: uppercase;
  text-decoration: none;
  text-align: left;
  color: var(--c-light);
  background-color: var(--c-primary);
  border-radius: var(--br-base);
  transition: color 0.3s var(--ease-in-out-custom), background-color 0.3s var(--ease-in-out-custom);
}
.a-button:hover {
  background-color: var(--c-primary-dark);
}
.a-button__title {
  font-weight: var(--fw-medium);
  font-size: 1rem;
  line-height: 1.25;
}
.a-button__metas {
  line-height: 1.1;
}
.a-button--white {
  color: var(--c-primary);
  background-color: var(--c-light);
}
.a-button--white:hover {
  color: var(--c-light);
  background-color: var(--c-primary);
}
.a-button--transparent {
  color: var(--c-primary);
  background-color: transparent;
}
.a-button--transparent:hover {
  color: var(--c-primary-dark);
  background-color: transparent;
}
.a-button--full {
  display: flex;
  width: 100%;
  color: var(--c-primary);
  padding: 1.0625rem 1rem;
  background-color: var(--c-light);
}
.a-button--full .a-button__title {
  font-size: 1.5rem;
}
.a-button--full .a-button__metas {
  color: var(--c-grey);
  transition: color 0.3s var(--ease-in-out-custom);
}
.a-button--full:hover,
.a-button--full.is-active {
  color: var(--c-light);
  background-color: var(--c-primary);
}
.a-button--full:hover .a-button__metas,
.a-button--full.is-active .a-button__metas {
  color: var(--c-grey-light);
}
.a-button--thin {
  padding: 0.5rem 1rem;
}
.a-button--thin .a-button__title {
  font-size: 1rem;
}
.a-button__content {
  display: flex;
  flex-direction: column;
  flex-grow: 2;
}
.a-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  border: none;
  fill: currentColor;
}
.a-image {
  display: block;
  position: relative;
  width: 100%;
}
.a-image__content,
.a-image__w {
  position: relative;
}
.a-image__w {
  display: flex;
  align-items: center;
}
.a-image__content {
  overflow: hidden;
}
.a-image__tag {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.a-image--w-borders {
  overflow: hidden;
  border-radius: var(--border-radius-large);
}
.a-image--header .a-image__tag {
  max-height: 22.5rem;
}
.a-scroll-down {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--zi-scroll-down);
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1/1;
  background-color: var(--c-light);
  border-radius: var(--br-base);
}
.a-scroll-down__button {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.a-scroll-down .a-icon {
  width: 1.5rem;
}
.m-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1rem;
  background-color: var(--c-light);
  border-radius: var(--br-base);
  overflow: hidden;
}
.m-card-content__body {
  flex-grow: 1;
}
.m-card-media {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--br-base);
  background-color: var(--c-light);
  overflow: hidden;
}
.m-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: var(--c-primary);
  opacity: 0;
  transition: opacity 0.3s var(--ease-in-out-custom);
}
.m-card-media .a-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.m-card-media__media {
  position: relative;
  width: 100%;
  max-height: 22.8125rem;
  aspect-ratio: 0.94/1.1;
}
.m-card-media__media .a-image {
  position: absolute;
  width: 100%;
}
.m-card-media__media .a-image,
.m-card-media__media .a-image__content,
.m-card-media__media .a-image__w,
.m-card-media__media .a-image__tag {
  height: 100%;
}
.m-card-media__footer {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
}
.m-card-media__play {
  position: absolute;
  top: -2.5em;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.25rem;
  height: 6.25rem;
  margin: auto;
  background-color: var(--c-light);
  border-radius: 50%;
  color: var(--c-primary);
}
.m-card-media__play .a-icon {
  width: 2.625rem;
  height: 2.625rem;
}
.m-card-media--h2 .m-card-media__media {
  aspect-ratio: 2/1.1;
}
.m-card-media--h2 .m-card-media__play {
  transform: scale(0.75);
}
.m-card-media--h2.m-card-media--w6 .m-card-media__media {
  aspect-ratio: 2/0.715;
}
.m-card-media--h2.m-card-media--w6 .m-card-media__play {
  transform: scale(0.75);
}
a.m-card-media:hover::before,
button.m-card-media:hover::before {
  opacity: 0.25;
}
a.m-card-media:hover .a-button,
button.m-card-media:hover .a-button {
  color: var(--c-light);
  background-color: var(--c-primary);
}
a.m-card-media:hover .a-button__metas,
button.m-card-media:hover .a-button__metas {
  color: var(--c-grey-light);
}
.m-headline__link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-headline__link .a-icon {
  width: 2.625rem;
  height: 2.625rem;
  color: var(--c-primary);
}
.m-headline--link .m-headline__content {
  border-left: 0.0625rem solid var(--c-grey-light);
  padding-left: var(--s-m);
}
.m-subnavigation {
  font-family: var(--ff-roboto-condensed);
  font-weight: var(--fw-medium);
  background-color: var(--c-light);
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
  border-top: 1px solid var(--gray-light);
}
.m-subnavigation__item {
  text-decoration: none;
  display: inline-block;
  margin-right: 0.5rem;
}
span.m-subnavigation__item {
  color: var(--c-primary);
}
a.m-subnavigation__item::after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.75rem;
  margin-left: 0.5rem;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="12" viewBox="0 0 6 12" fill="none"><path d="M1.5 2.25L5.25 6L1.5 9.75" stroke="%23C4C6C7" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.m-modal {
  position: fixed;
  inset: 0;
  z-index: var(--zi-modal);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0s 0.3s;
}
.m-modal .container {
  width: 100%;
}
.m-modal__inner {
  position: relative;
  margin-inline: auto;
  max-height: calc(80dvh - clamp(3.125rem, 5000 / (var(--fluid-max) - var(--fluid-min)) * 1vw + (var(--fluid-min) * 100 - var(--fluid-max) * 50) / (var(--fluid-min) - var(--fluid-max)) / 16 * 1rem, 6.25rem));
  padding: 0.5rem;
  border-radius: 0.25rem;
}
.m-modal__button-close {
  position: absolute;
  top: -6.25rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
  background-color: var(--c-light);
  border-radius: 0.25rem;
}
.m-modal__button-close svg {
  width: 2rem;
  aspect-ratio: 1/1;
}
.m-modal__button-nav {
  position: absolute;
  top: calc(100% + 2rem);
  left: 50%;
  z-index: 1;
  background-color: var(--c-primary);
  border-radius: 0.25rem;
}
.m-modal__button-nav svg {
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1/1;
  color: var(--c-light);
}
.m-modal__button-nav--prev {
  rotate: 180deg;
  translate: calc(-50% - 2rem) 0;
}
.m-modal__button-nav--next {
  translate: calc(-50% + 2rem) 0;
}
.m-modal__button-nav.is-hidden {
  display: none;
}
.m-modal.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s;
}
@media all and (min-width: 1440px) {
  .m-modal__button-nav {
    top: 50%;
    left: auto;
  }
  .m-modal__button-nav svg {
    width: 4rem;
    height: 4rem;
  }
  .m-modal__button-nav--prev {
    left: 0;
    translate: calc(-100% - clamp(1rem, 1600 / (var(--fluid-max) - var(--fluid-min)) * 1vw + (var(--fluid-min) * 32 - var(--fluid-max) * 16) / (var(--fluid-min) - var(--fluid-max)) / 16 * 1rem, 2rem)) -50%;
  }
  .m-modal__button-nav--next {
    right: 0;
    translate: calc(100% + clamp(1rem, 1600 / (var(--fluid-max) - var(--fluid-min)) * 1vw + (var(--fluid-min) * 32 - var(--fluid-max) * 16) / (var(--fluid-min) - var(--fluid-max)) / 16 * 1rem, 2rem)) -50%;
  }
}
.m-modal-state {
  position: fixed;
  inset: 0;
  z-index: var(--zi-modal-state);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-light);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0s 0.3s;
}
.m-modal-state h2 strong {
  color: var(--c-light);
}
.m-modal-state .a-button--transparent {
  color: var(--c-light);
}
.m-modal-state__inner {
  position: relative;
  margin-inline: auto;
  max-width: min(90%, 37.5rem);
  max-height: calc(80dvh - clamp(3.125rem, 5000 / (var(--fluid-max) - var(--fluid-min)) * 1vw + (var(--fluid-min) * 100 - var(--fluid-max) * 50) / (var(--fluid-min) - var(--fluid-max)) / 16 * 1rem, 6.25rem));
  padding: 3rem;
  border-radius: 0.25rem;
}
.m-modal-state__content {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.m-modal-state__buttons {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  align-items: center;
}
.m-modal-state.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s;
}
.o-slideshow {
  position: relative;
}
.o-slideshow__swiper {
  overflow: visible !important;
}
.o-slideshow__item {
  padding-inline: var(--grid-gutter);
  padding-bottom: 20px;
}
.o-slideshow__item .a-image {
  overflow: hidden;
  border-radius: var(--br-base);
  background-color: var(--c-light);
}
.o-slideshow__item .a-image__tag {
  aspect-ratio: 16/9;
}
.o-slideshow__pagination {
  position: relative !important;
}
.o-slideshow__pagination .swiper-pagination-bullet {
  position: relative;
  width: 1.125rem;
  height: 1rem;
  border-radius: 0 !important;
  background-color: transparent;
  opacity: 1;
  transition: width 0.4s var(--ease-in-out-custom);
}
.o-slideshow__pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 0;
  width: 100%;
  height: 0.125rem;
  border-radius: 1px;
  background-color: var(--c-grey-light);
  transition: background-color 0.4s var(--ease-in-out-custom);
}
.o-slideshow__pagination .swiper-pagination-bullet-active {
  width: 4rem !important;
}
.o-slideshow__pagination .swiper-pagination-bullet-active::after {
  background-color: var(--c-primary);
}
@media all and (min-width: 768px) {
  .o-editor-media .column {
    grid-row: 1;
  }
}
.o-accordions__item__header .a-icon {
  transition: transform 0.7s var(--ease-in-out-custom);
}
.o-accordions__item__content-wrap {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.7s var(--ease-in-out-custom);
}
.o-accordions__item__content {
  min-height: 0;
  visibility: hidden;
  transition: visibility 0.7s var(--ease-in-out-custom);
}
.o-accordions__item__content__inner {
  padding: var(--s-s);
  background-color: var(--c-light);
  border-bottom-left-radius: var(--br-base);
  border-bottom-right-radius: var(--br-base);
}
.o-accordions__item:has(.o-accordions__item__header.is-active) .o-accordions__item__header .a-icon {
  transform: rotate(180deg);
}
.o-accordions__item:has(.o-accordions__item__header.is-active) .o-accordions__item__content-wrap {
  grid-template-rows: 1fr;
}
.o-accordions__item:has(.o-accordions__item__header.is-active) .o-accordions__item__content {
  visibility: visible;
}
.l-header {
  width: 100%;
  top: 0;
  position: sticky;
  background-color: var(--c-light);
  overflow: hidden;
  z-index: var(--zi-navigation);
}
.l-header,
.l-header__content {
  height: 6.25rem;
}
.l-header__content {
  display: flex;
  align-items: center;
}
.l-header__content--left {
  justify-content: flex-start;
}
.l-header__content--right {
  justify-content: flex-end;
}
.l-header__content--right *:not(.l-header__qr) {
  display: none;
}
.l-header__pipe {
  display: inline-block;
  margin-inline: var(--s-s);
  width: 0.0625rem;
  height: calc(100% - 1.75rem);
  background-color: var(--c-grey-light);
}
.l-header__logo {
  max-width: 5rem;
}
.l-header__logo__svg {
  width: 100%;
  aspect-ratio: 128/58;
}
.l-header__menu-lang li {
  list-style: none;
  display: inline-block;
}
.l-header__menu-lang a {
  display: block;
  text-decoration: none;
  padding-right: 0.5rem;
  line-height: 6.25rem;
}
.l-header__menu-lang a:not(.is-active) > * {
  color: var(--c-grey);
}
.l-header__qr {
  max-width: 3.125rem;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media all and (min-width: 414px) {
  .l-header__content--right *:not(.l-header__qr) {
    display: initial;
  }
}
@media all and (min-width: 768px) {
  .l-header__pipe {
    margin-inline: var(--s-m);
  }
  .l-header__logo {
    max-width: 8rem;
  }
  .l-header__qr {
    max-width: 4.5rem;
  }
}
.l-footer {
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}
.l-footer__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-black);
  background:
    linear-gradient(
      180deg,
      var(--c-grey-lightest) 0%,
      rgba(240, 241, 241, 0) 100%);
  z-index: 1;
}
.l-error {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding-block: 16rem;
}
.l-error__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 31.25rem;
  margin-inline: auto;
  text-align: center;
}
.l-error .a-icon {
  width: 4rem;
  height: 4rem;
}
.l-error__title {
  font-weight: var(--fw-medium);
  color: var(--c-primary);
}
.l-error__link {
  margin-top: var(--s-s);
}
@font-face {
  font-family: "swiper-icons";
  src: url(data:application/font-woff;charset=utf-8;base64,\ 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) format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image:
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
:root {
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
