/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

: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;
  /* Fix of Webkit flickering */
  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;
}

/* Auto Height */
.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;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .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-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);
  }
}
/* Slide styles end */
/* =======================
    Variables
    ======================= */
/* =======================
	Reset
	======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

:focus:not(:focus-visible) {
  outline: none;
}

:root {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}

hr {
  border: none;
  height: 1px;
  background-color: currentColor;
}

address {
  font-style: normal;
}

th,
td {
  text-align: left;
}

@font-face {
  font-family: Telko;
  font-weight: 400;
  src: url("../fonts/Telka-Regular.woff2");
}
@font-face {
  font-family: Telko;
  font-weight: 500;
  src: url("../fonts/Telka-Medium.woff2");
}
/* =======================
    Base
    ======================= */
:root {
  font-family: "Telko", system-ui;
  font-size: 16px;
  font-size: clamp(16px, 1.11vw, 20px);
  line-height: 1.33;
  text-rendering: geometricPrecision;
  text-underline-position: under;
  background-color: black;
  overflow-y: scroll;
}

body {
  width: calc(100% - 2.22rem);
  margin: 1.11rem;
  min-height: calc(100vh - 2.22rem);
}

[id] {
  scroll-margin-top: 10rem;
}

h1,
.heading-1,
h2,
.heading-2,
h3,
.heading-3,
h4,
.heading-4,
h5,
.heading-5 {
  margin-top: 2em;
  margin-bottom: 1em;
  text-wrap: balance;
  font-weight: 500;
}
h1:first-child,
.heading-1:first-child,
h2:first-child,
.heading-2:first-child,
h3:first-child,
.heading-3:first-child,
h4:first-child,
.heading-4:first-child,
h5:first-child,
.heading-5:first-child {
  margin-top: 0;
}
h1:last-child,
.heading-1:last-child,
h2:last-child,
.heading-2:last-child,
h3:last-child,
.heading-3:last-child,
h4:last-child,
.heading-4:last-child,
h5:last-child,
.heading-5:last-child {
  margin-bottom: 0;
}
h1 + h1, h1 + .heading-1, h1 + h2, h1 + .heading-2, h1 + h3, h1 + .heading-3, h1 + h4, h1 + .heading-4, h1 + h5, h1 + .heading-5,
.heading-1 + h1,
.heading-1 + .heading-1,
.heading-1 + h2,
.heading-1 + .heading-2,
.heading-1 + h3,
.heading-1 + .heading-3,
.heading-1 + h4,
.heading-1 + .heading-4,
.heading-1 + h5,
.heading-1 + .heading-5,
h2 + h1,
h2 + .heading-1,
h2 + h2,
h2 + .heading-2,
h2 + h3,
h2 + .heading-3,
h2 + h4,
h2 + .heading-4,
h2 + h5,
h2 + .heading-5,
.heading-2 + h1,
.heading-2 + .heading-1,
.heading-2 + h2,
.heading-2 + .heading-2,
.heading-2 + h3,
.heading-2 + .heading-3,
.heading-2 + h4,
.heading-2 + .heading-4,
.heading-2 + h5,
.heading-2 + .heading-5,
h3 + h1,
h3 + .heading-1,
h3 + h2,
h3 + .heading-2,
h3 + h3,
h3 + .heading-3,
h3 + h4,
h3 + .heading-4,
h3 + h5,
h3 + .heading-5,
.heading-3 + h1,
.heading-3 + .heading-1,
.heading-3 + h2,
.heading-3 + .heading-2,
.heading-3 + h3,
.heading-3 + .heading-3,
.heading-3 + h4,
.heading-3 + .heading-4,
.heading-3 + h5,
.heading-3 + .heading-5,
h4 + h1,
h4 + .heading-1,
h4 + h2,
h4 + .heading-2,
h4 + h3,
h4 + .heading-3,
h4 + h4,
h4 + .heading-4,
h4 + h5,
h4 + .heading-5,
.heading-4 + h1,
.heading-4 + .heading-1,
.heading-4 + h2,
.heading-4 + .heading-2,
.heading-4 + h3,
.heading-4 + .heading-3,
.heading-4 + h4,
.heading-4 + .heading-4,
.heading-4 + h5,
.heading-4 + .heading-5,
h5 + h1,
h5 + .heading-1,
h5 + h2,
h5 + .heading-2,
h5 + h3,
h5 + .heading-3,
h5 + h4,
h5 + .heading-4,
h5 + h5,
h5 + .heading-5,
.heading-5 + h1,
.heading-5 + .heading-1,
.heading-5 + h2,
.heading-5 + .heading-2,
.heading-5 + h3,
.heading-5 + .heading-3,
.heading-5 + h4,
.heading-5 + .heading-4,
.heading-5 + h5,
.heading-5 + .heading-5 {
  margin-top: 1em;
}

h1,
.heading-1 {
  margin-top: 2.22rem;
  margin-bottom: 4rem;
  font-size: 3.5rem;
  line-height: 1.14;
}
@media screen and (max-width: 600px) {
  h1,
  .heading-1 {
    font-size: 2.75rem;
  }
}

h2,
.heading-2 {
  font-size: 2.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 600px) {
  h2,
  .heading-2 {
    font-size: 2rem;
  }
}

h3,
.heading-3 {
  font-size: 1.5rem;
  line-height: 1.33;
}
@media screen and (max-width: 600px) {
  h3,
  .heading-3 {
    font-size: 2rem;
  }
}
.m-intro__text h3,
.m-intro__text .heading-3 {
  font-weight: 400;
}
h3 span,
.heading-3 span {
  display: block;
}
h3 span:nth-child(2),
.heading-3 span:nth-child(2) {
  font-weight: normal;
}

h4,
.heading-4 {
  font-size: 1.25rem;
  line-height: 1.25;
}
@media screen and (max-width: 600px) {
  h4,
  .heading-4 {
    font-size: 1.125rem;
  }
}

p,
ul,
ol {
  margin-bottom: 1rem;
}
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

ul,
ol {
  padding-left: 1rem;
}
nav ul,
nav ol {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

strong,
b {
  font-weight: 500;
}

a {
  color: currentColor;
}
nav a {
  text-decoration: none;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
  border: none;
}

figure {
  font-size: 0;
}

figcaption {
  margin-top: 1rem;
  font-size: 1rem;
}

hr {
  border: none;
  border-bottom: 1px solid;
}

input,
textarea,
select,
button {
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  background-color: transparent;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=password],
input[type=submit],
textarea,
select,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=checkbox],
input[type=radio] {
  margin-right: 0.25rem;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: currentColor;
}

::-moz-placeholder {
  color: currentColor;
}

:-ms-input-placeholder {
  color: currentColor;
}

:-moz-placeholder {
  color: currentColor;
}

fieldset {
  border: none;
}

button,
input[type=submit],
input[type=file]::file-selector-button,
.m-button {
  text-rendering: geometricPrecision;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  leading-trim: both;
}

/* =======================
    Utilities
    ======================= */
.u-grid {
  display: grid;
  gap: 3.94rem 2.22rem;
}
.u-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 840px) {
  .u-grid--2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.u-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 840px) {
  .u-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .u-grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.u-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media screen and (max-width: 840px) {
  .u-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .u-grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.u-grid__item--2-3 {
  grid-column: span 2;
}
@media screen and (max-width: 840px) {
  .u-grid__item--2-3 {
    grid-column: span 1;
  }
}
.u-grid__item--full {
  grid-column: 1/-1;
}
.u-grid__item--full-2-2 {
  grid-column: 2/-2;
}
.u-grid--12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.u-flex {
  display: flex;
}

.u-limiter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 10fr) minmax(0, 1fr);
  grid-template-areas: ". content .";
}
@media screen and (max-width: 600px) {
  .u-limiter {
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 11fr) minmax(0, 0.5fr);
  }
}
.u-limiter__inner {
  grid-area: content;
}

.u-section {
  padding-right: 2.22rem;
  padding-left: 2.22rem;
}
.u-section--transparent {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.u-section--white {
  padding-top: 5rem;
  padding-bottom: 5rem;
  color: black;
  background-color: white;
}
.u-section--black {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  color: white;
  background-color: black;
}
.u-section--limited {
  margin-right: 2.22rem;
  margin-left: 2.22rem;
  padding-right: 0;
  padding-left: 0;
}

.u-center {
  text-align: center;
}

.u-text {
  max-width: 80ch;
}

.u-border-triangles {
  clip-path: polygon(0 1rem, 1rem 0, calc(100% - 1rem) 0, 100% 1rem, 100% calc(100% - 1rem), calc(100% - 1rem) 100%, 1rem 100%, 0 calc(100% - 1rem));
}
.u-border-triangles--pseudo {
  position: relative;
}
.u-border-triangles--pseudo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: white;
  clip-path: polygon(0 1rem, 1rem 0, calc(100% - 1rem) 0, 100% 1rem, 100% calc(100% - 1rem), calc(100% - 1rem) 100%, 1rem 100%, 0 calc(100% - 1rem));
}
.u-section--white .u-border-triangles--pseudo::before {
  background-color: #f4f4f5;
}

.u-module-padding {
  padding: 2.5rem;
}

/* =======================
    Layouts
    ======================= */
.l-main {
  padding-top: 10rem;
  background-color: var(--primary, transparent);
}
.l-main:has(.u-section:only-child) {
  padding-bottom: 10rem;
}
.home .l-main {
  padding: 0;
}

.l-footer {
  padding: 2.22rem;
}

/* =======================
    Modules
    ======================= */
.m-skip {
  position: absolute;
  z-index: 11;
  padding: 0.25rem;
  background-color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
}
.m-skip:focus {
  opacity: 1;
  pointer-events: auto;
}

.m-hamburger {
  display: none;
  color: currentColor;
}
@media screen and (max-width: 840px) {
  .m-hamburger {
    display: block;
  }
}
.m-hamburger.is-clicked rect {
  transform: scaleX(0);
}
.m-hamburger.is-clicked rect:first-child {
  transform: translateY(0) rotate(45deg);
}
.m-hamburger.is-clicked rect:last-child {
  transform: translateY(0) rotate(-45deg);
}
.m-hamburger svg {
  width: 1.5rem;
  color: currentColor;
}
.m-hamburger rect {
  fill: currentColor;
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
}
.m-hamburger rect:not(:first-child):not(:last-child) {
  transform-origin: left;
}
.m-hamburger rect:first-child {
  transform: translateY(-16px);
}
.m-hamburger rect:last-child {
  transform: translateY(16px);
}

.m-nav {
  position: fixed;
  z-index: 10;
  top: 3.33rem;
  right: 0;
  left: 0;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 2.67rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.89rem 1.33rem;
  border-radius: 2.22222rem;
  line-height: 1;
  background-color: white;
  font-size: 0;
}
@media screen and (max-width: 840px) {
  .m-nav {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 6.66rem);
  }
}
.m-nav__logo {
  height: 2.22rem;
}
.m-nav__list {
  display: flex;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 840px) {
  .m-nav__list {
    display: none;
  }
}
.m-nav__list-item-link:hover, .m-nav__list-item-link--active, .m-nav__list-item-link:has(+ .m-subnav__list:hover) {
  background-color: var(--primary);
}

.m-subnav__list {
  position: absolute;
  top: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.44rem;
  opacity: 0;
  visibility: hidden;
}
.m-subnav__parent:hover .m-subnav__list {
  opacity: 1;
  visibility: visible;
}
.m-subnav__list::before {
  content: "";
  display: inline-block;
  height: 2.22rem;
  pointer-events: none;
}
.m-subnav__list-item-link {
  white-space: nowrap;
}
.m-subnav__parent {
  position: relative;
}

@keyframes scaleDown {
  0%, 50% {
    transform: scale(1);
  }
  80%, 100% {
    transform: scale(0.2);
  }
}
.m-logo-intro {
  position: relative;
  z-index: -1;
  height: calc(100vh - 2.2rem);
  padding: 2.22rem;
  background-color: var(--primary, transparent);
  overflow: clip;
}
.m-logo-intro__shape {
  position: fixed;
  inset: 1.11rem;
  width: calc(100% - 2.2rem);
  height: calc(100% - 2.2rem);
  -o-object-fit: contain;
     object-fit: contain;
}
.m-logo-intro__logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  animation-duration: 1ms;
  animation-name: scaleDown;
  animation-timing-function: linear;
  animation-timeline: view();
  transform-origin: center bottom;
  transform: scale(0.5);
}

.m-intro {
  background-color: black;
  color: white;
}
.m-intro__title {
  grid-area: title;
}
.m-intro__title-wrapper {
  xgrid-area: title;
}
.m-intro__title + .m-intro__link {
  margin-bottom: 0;
}
.m-intro__text {
  grid-area: text;
  margin-top: 4.5rem;
  color: #727272;
}
.m-heroimage {
  width: 100%;
}
.m-heroimage__outer {
  margin-bottom: 2.44rem;
}

.m-page-header__content {
  grid-column: 2/-2;
  display: grid;
  grid-template-columns: subgrid;
  grid-template-areas: "breadcrumbs breadcrumbs breadcrumbs breadcrumbs breadcrumbs breadcrumbs breadcrumbs breadcrumbs breadcrumbs breadcrumbs" "title title title title title title title link link link" ". text text text text text text text . .";
}
.home .m-page-header__content {
  grid-column: 1/-1;
  grid-template-areas: "title title title title title title title title link link link link";
}
.m-page-header__title {
  grid-area: title;
  margin-bottom: 0;
}
.m-page-header__link {
  grid-area: link;
  justify-self: end;
  align-self: end;
}

.m-section-header__content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas: "title title title title title title title title link link link link";
}
.u-section--parent .m-section-header__content {
  grid-template-areas: ". title title title title title title title link link link .";
}
.m-section-header__title {
  grid-area: title;
}
.m-section-header__title:has(+ .m-section-header__link) {
  margin-bottom: 0;
}
.m-section-header__link {
  grid-area: link;
  justify-self: end;
  align-self: end;
}

.m-breadcrumbs {
  grid-area: breadcrumbs;
  justify-self: start;
  color: black;
  background-color: white;
  font-size: 0.88rem;
  line-height: 0;
}
.m-breadcrumbs__home-icon {
  height: 1em;
}
.m-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.44rem;
}
.m-breadcrumbs__list-item {
  display: flex;
  align-items: center;
  gap: 0.44rem;
}
.m-breadcrumbs__list-item + .m-breadcrumbs__list-item::before {
  content: "";
  display: inline-block;
  width: 0.88em;
  height: 0.88em;
  background-image: url("/img/icons/arrow-right.svg");
}

@keyframes marqueeToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(50%);
  }
}
@keyframes marqueeToLeft {
  from {
    transform: translateX(50%);
  }
  to {
    transform: translateX(-50%);
  }
}
.m-marquee {
  justify-content: start;
  gap: 0.44rem;
  animation-duration: 1ms;
  animation-name: marqueeToRight;
  animation-timing-function: linear;
  animation-timeline: view();
}
.m-marquee--reverse {
  justify-content: end;
  flex-direction: row-reverse;
  animation-name: marqueeToLeft;
}
.m-marquee img {
  width: 12rem;
  height: 12rem;
}
.m-marquee__container {
  display: flex;
  flex-direction: column;
  gap: 0.44rem;
  padding-bottom: 6.5rem;
  background-color: black;
  overflow: clip;
}

.m-text-teaser {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;
}
.m-text-teaser__inner {
  grid-row: 1;
  grid-column: 2/span 7;
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;
  margin-bottom: 0.44rem;
  padding: 1.75rem;
  color: black;
}
.m-text-teaser__inner > * {
  grid-row: 1;
  z-index: 1;
}
.m-text-teaser dl {
  grid-column: 1/span 2;
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
}
.m-text-teaser dd {
  font-size: 4.44rem;
  font-weight: 500;
}
.m-text-teaser__icon-container {
  grid-column: 1;
  width: 6rem;
  height: 6rem;
  padding: 0.9rem;
  border-radius: 50%;
  font-size: 0;
  background-color: black;
  transform: translateX(-1.11rem) translateX(-50%);
}
.m-text-teaser__content {
  grid-column: 2/-1;
}
dl + .m-text-teaser__content {
  grid-column-start: 3;
}
.m-text-teaser__text {
  color: #727272;
  line-height: 1.5;
}
.m-text-teaser__image {
  grid-column: 1;
  grid-row: 1;
  display: inline-block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  padding: 12.5%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.m-text-teaser__image-bg {
  grid-column: 1;
  grid-row: 1;
}
.m-text-teaser__image-container {
  grid-column: -2/-1;
  grid-row: 1;
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  place-items: center;
  transform-origin: right center;
  transform: scale(7);
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.m-text-teaser__inner:hover + .m-text-teaser__image-container {
  opacity: 1;
}
.m-text-teaser__outer {
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;
}

.m-slider-teaser {
  color: black;
  background-color: white;
}
.m-slider-teaser__outer--stacked .m-slider-teaser:not(.swiper-slide-active) {
  opacity: 0.5;
  filter: blur(2px);
}
.m-slider-teaser__inner {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  height: 100%;
}
.m-slider-teaser header {
  grid-column: span 4;
  padding: 1.75rem 2.5rem;
}
.m-slider-teaser figure {
  grid-column: span 5;
}
.m-slider-teaser figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.m-slider-teaser__container {
  display: grid;
  grid-template-columns: subgrid;
}
.m-slider-teaser__nav {
  grid-column: span 2;
}
.m-slider-teaser__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.44rem;
}
.m-slider-teaser__outer {
  width: 100%;
}
.m-slider-teaser__outer--stacked {
  grid-column: span 10;
}
.m-slider-teaser__outer--row {
  grid-column: span 12;
}

.m-cta__text {
  grid-column: span 9;
}
.m-cta__links {
  grid-column: span 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.89rem;
}
.m-cta__links a {
  flex-shrink: 0;
  display: inline-block;
  padding: 1.11rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: var(--primary);
  background-color: var(--primary);
}
.m-cta__links svg {
  width: 3.7rem;
  height: 3.7rem;
}

.m-job {
  padding: 2rem 2.375rem;
  background-color: white;
}
.m-job__text {
  color: #727272;
  line-height: 1.5;
}
.m-job__container {
  gap: 0.5rem;
}

.m-team-member {
  display: flex;
  flex-direction: column;
  background-color: white;
}
.m-team-member img {
  width: 100%;
}
.m-team-member__text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem 2.5rem;
  line-height: 1.5;
}
.m-team-member__contact {
  display: flex;
  gap: 1.43rem;
  margin-top: 2.18rem;
}
.m-team-member__icon {
  width: 7.125rem;
}
.m-team-member__container {
  gap: 3rem 2.7rem;
}

.m-text {
  grid-column: 3/span 7;
}
.m-text__header {
  grid-column: 2/span 7;
}

.m-image__container--left {
  grid-column: 2/span 5;
}
.m-image__container--right {
  grid-column: -8/span 6;
}

.m-video {
  width: 100%;
}

.m-icon-link {
  display: inline-flex;
  place-items: center;
  flex-grow: 0;
  aspect-ratio: 1/1;
  padding: 5%;
  border-radius: 50%;
  background-color: var(--primary);
}

.m-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.44rem;
}
.m-footer-contact a {
  text-decoration: none;
  color: black;
}

.m-sm-link {
  width: 2.22rem;
  height: 2.22rem;
  padding: 0.56rem;
  border-radius: 50%;
  color: var(--primary);
  background-color: var(--primary);
}
.m-sm-link svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.m-sm-link__container {
  display: flex;
  gap: 0.76rem;
  justify-content: center;
}

.m-card {
  background-color: white;
  padding: 2.11rem;
}
.m-accordion__head {
  padding: 1.25rem;
}
.m-accordion__head-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-accordion__head-icon {
  flex-shrink: 0;
}
.m-accordion__body {
  padding: 1.25rem;
}

.m-form__field {
  max-width: 20rem;
}
.m-button {
  display: inline-block;
  padding: 0.44rem 0.67rem;
  border-radius: 2.22rem;
  text-decoration: none;
  text-box: trim-both cap alphabetic;
}
.m-button--white {
  background-color: white;
  color: black;
}
.m-button--l {
  padding: 0.5rem 0.75rem 0.5rem 1.25rem;
}
.m-button--arrow {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}
.m-button--arrow svg {
  width: 2.1rem;
  height: 2.1rem;
}
.m-button__icon-container {
  padding: 0.3545rem;
  border-radius: 50%;
  font-size: 0;
  color: white;
  background-color: black;
}

.m-arrow-fakelink {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background-color: var(--primary);
}
.m-arrow-fakelink svg {
  width: 2rem;
}

.m-overlaying-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.m-overlaying-link__parent {
  position: relative;
}
.m-overlaying-link__parent a:not(.m-overlaying-link) {
  position: relative;
  z-index: 2;
}
