@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --_size: 1.8rem;
  --_font-default: "Funnel Sans", sans-serif;
  --_font-accent: "Funnel Display", sans-serif;
  --_radius-s: 1rem;
  --_radius-m: 1.6rem;
  --_radius-pt-m: 1.6rem;
  --_radius-l: 3.8rem;
  --_radius-xl: 6rem;
  --_animspeed-fast: 0.1s;
  --_animspeed-medium: 0.3s;
  --_animspeed-slow: 0.6s;
  --_animbezier: cubic-bezier(0.23, 0.65, 0.74, 1.09);

  --base--light: #faf7f6;
  --base-rgb--light: 250, 247, 246;
  --base-tint--light: #dfdfdf;
  --base-shade--light: #e0dddb;
  --base-opp--light: #161616;
  --accent--light: #9f8be7;
  --accent-rgb--light: 159, 139, 231;
  --additional--light: #ddf160;
  --additional-rgb--light: 221, 241, 96;
  --neutral-transparent--light: rgba(255, 255, 255, 0.3);
  --st-bright--light: #161616;
  --st-medium--light: #7c7c7c;
  --st-muted--light: #e0dddb;
  --st-opp-bright--light: #ffffff;
  --fw-regular--light: 400;
  --fw-medium--light: 600;
  --fw-semibold--light: 700;
  --fw-bold--light: 800;
  --fw-regular-opp--light: 300;
  --fw-medium-opp--light: 500;
  --t-bright--light: #161616;
  --t-medium--light: #303030;
  --t-muted--light: #585858;
  --t-muted-extra--light: #b2aead;
  --t-opp-bright--light: #ffffff;
  --t-opp-muted--light: #838383;
  --bg-demo-screen-01--light: url(../img/demo/screens/01.webp);
  --bg-demo-screen-02--light: url(../img/demo/screens/02.webp);
  --bg-demo-screen-03--light: url(../img/demo/screens/03.webp);
  --bg-demo-screen-04--light: url(../img/demo/screens/04.webp);
  --bg-demo-screen-05--light: url(../img/demo/screens/05.webp);
  --bg-demo-screen-06--light: url(../img/demo/screens/06.webp);
  --bg-demo-screen-07--light: url(../img/demo/screens/07.webp);
  --bg-demo-screen-08--light: url(../img/demo/screens/08.webp);
  --bg-demo-screen-09--light: url(../img/demo/screens/09.webp);

  --base--dark: #000000;
  --base-rgb--dark: 22, 22, 22;
  --base-tint--dark: transparent;
  --base-shade--dark: #0a0a0a;
  --base-opp--dark: #ffffff;

  --accent--dark: #0ed2fe;
  --accent-rgb--dark: 221, 241, 96;
  --additional--dark: #9f8be7;
  --additional-rgb--dark: 159, 139, 231;
  --neutral-transparent--dark: rgba(0, 0, 0, 0.3);
  --st-bright--dark: #11cee3;
  --st-medium--dark: #11cee3;
  --st-muted--dark: #11cee3;
  --st-opp-bright--dark: #0f0f0f;
  --fw-regular--dark: 300;
  --fw-medium--dark: 500;
  --fw-semibold--dark: 600;
  --fw-bold--dark: 700;
  --fw-regular-opp--dark: 400;
  --fw-medium-opp--dark: 600;
  --t-bright--dark: #ffffff;
  --t-medium--dark: #ffffff;
  --t-muted--dark: #838383;
  --t-muted-extra--dark: #535151;
  --t-opp-bright--dark: #ffffff;
  --t-opp-medium--dark: #ffffff;
  --t-opp-muted--dark: #969696;
  --bg-demo-screen-01--dark: url(../img/demo/screens/01-d.webp);
  --bg-demo-screen-02--dark: url(../img/demo/screens/02-d.webp);
  --bg-demo-screen-03--dark: url(../img/demo/screens/03-d.webp);
  --bg-demo-screen-04--dark: url(../img/demo/screens/04-d.webp);
  --bg-demo-screen-05--dark: url(../img/demo/screens/05-d.webp);
  --bg-demo-screen-06--dark: url(../img/demo/screens/06-d.webp);
  --bg-demo-screen-07--dark: url(../img/demo/screens/07-d.webp);
  --bg-demo-screen-08--dark: url(../img/demo/screens/08-d.webp);
  --bg-demo-screen-09--dark: url(../img/demo/screens/09-d.webp);

  --pt-base: #ffffff;
  --pt-base-dark: #161616;
  --pt-t-light-bright: #ffffff;
  --pt-t-dark-bright: #161616;
  --pt-st-light-bright: #ffffff;
  --pt-st-dark-bright: #161616;
  --pt-purple-rgb: 159, 139, 231;
  --pt-purple-dark-rgb: 33, 10, 113;

  --nl-white: #ffffff;
  --nl-black: #000000;
}
@media only screen and (min-width: 768px) {
  :root {
    --_radius-m: 2.6rem;
    --_radius-l: 5rem;
    --_radius-xl: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --_radius-xl: 8rem;
  }
}

@media (prefers-color-scheme: light) {
  :root {
    --base: var(--base--light);
    --base-rgb: var(--base-rgb--light);
    --base-tint: var(--base-tint--light);
    --base-shade: var(--base-shade--light);
    --base-opp: var(--base-opp--light);
    --base-opp-tint: var(--base-opp-tint--light);
    --accent: var(--accent--light);
    --accent-rgb: var(--accent-rgb--light);
    --additional: var(--additional--light);
    --additional-rgb: var(--additional-rgb--light);
    --neutral-transparent: var(--neutral-transparent--light);
    --st-bright: var(--st-bright--light);
    --st-medium: var(--st-medium--light);
    --st-muted: var(--st-muted--light);
    --st-opp-bright: var(--st-opp-bright--light);
    --fw-regular: var(--fw-regular--light);
    --fw-medium: var(--fw-medium--light);
    --fw-semibold: var(--fw-semibold--light);
    --fw-bold: var(--fw-bold--light);
    --fw-regular-opp: var(--fw-regular-opp--light);
    --fw-medium-opp: var(--fw-medium-opp--light);
    --t-bright: var(--t-bright--light);
    --t-medium: var(--t-medium--light);
    --t-muted: var(--t-muted--light);
    --t-muted-extra: var(--t-muted-extra--light);
    --t-opp-bright: var(--t-opp-bright--light);
    --t-opp-medium: var(--t-opp-medium--light);
    --t-opp-muted: var(--t-opp-muted--light);
    --bg-demo-screen-01: var(--bg-demo-screen-01--light);
    --bg-demo-screen-02: var(--bg-demo-screen-02--light);
    --bg-demo-screen-03: var(--bg-demo-screen-03--light);
    --bg-demo-screen-04: var(--bg-demo-screen-04--light);
    --bg-demo-screen-05: var(--bg-demo-screen-05--light);
    --bg-demo-screen-06: var(--bg-demo-screen-06--light);
    --bg-demo-screen-07: var(--bg-demo-screen-07--light);
    --bg-demo-screen-08: var(--bg-demo-screen-08--light);
    --bg-demo-screen-09: var(--bg-demo-screen-09--light);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --base: var(--base--dark);
    --base-rgb: var(--base-rgb--dark);
    --base-tint: var(--base-tint--dark);
    --base-shade: var(--base-shade--dark);
    --base-opp: var(--base-opp--dark);
    --base-opp-tint: var(--base-opp-tint--dark);
    --accent: var(--accent--dark);
    --accent-rgb: var(--accent-rgb--dark);
    --additional: var(--additional--dark);
    --additional-rgb: var(--additional-rgb--dark);
    --neutral-transparent: var(--neutral-transparent--dark);
    --st-bright: var(--st-bright--dark);
    --st-medium: var(--st-medium--dark);
    --fw-semibold: var(--fw-semibold--dark);
    --st-muted: var(--st-muted--dark);
    --st-opp-bright: var(--st-opp-bright--dark);
    --fw-regular: var(--fw-regular--dark);
    --fw-medium: var(--fw-medium--dark);
    --fw-bold: var(--fw-bold--dark);
    --fw-regular-opp: var(--fw-regular-opp--dark);
    --fw-medium-opp: var(--fw-medium-opp--dark);
    --t-bright: var(--t-bright--dark);
    --t-medium: var(--t-medium--dark);
    --t-muted: var(--t-muted--dark);
    --t-muted-extra: var(--t-muted-extra--dark);
    --t-opp-bright: var(--t-opp-bright--dark);
    --t-opp-medium: var(--t-opp-medium--dark);
    --t-opp-muted: var(--t-opp-muted--dark);
    --bg-demo-screen-01: var(--bg-demo-screen-01--dark);
    --bg-demo-screen-02: var(--bg-demo-screen-02--dark);
    --bg-demo-screen-03: var(--bg-demo-screen-03--dark);
    --bg-demo-screen-04: var(--bg-demo-screen-04--dark);
    --bg-demo-screen-05: var(--bg-demo-screen-05--dark);
    --bg-demo-screen-06: var(--bg-demo-screen-06--dark);
    --bg-demo-screen-07: var(--bg-demo-screen-07--dark);
    --bg-demo-screen-08: var(--bg-demo-screen-08--dark);
    --bg-demo-screen-09: var(--bg-demo-screen-09--dark);
  }
}
[color-scheme="light"] {
  --base: var(--base--light);
  --base-rgb: var(--base-rgb--light);
  --base-tint: var(--base-tint--light);
  --base-shade: var(--base-shade--light);
  --base-opp: var(--base-opp--light);
  --base-opp-tint: var(--base-opp-tint--light);
  --accent: #000000;
  --accent-rgb: 0, 0, 0;
  --additional: var(--additional--light);
  --additional-rgb: var(--additional-rgb--light);
  --neutral-transparent: var(--neutral-transparent--light);
  --st-bright: var(--st-bright--light);
  --st-medium: var(--st-medium--light);
  --st-muted: var(--st-muted--light);
  --st-opp-bright: var(--st-opp-bright--light);
  --fw-regular: var(--fw-regular--light);
  --fw-medium: var(--fw-medium--light);
  --fw-semibold: var(--fw-semibold--light);
  --fw-bold: var(--fw-bold--light);
  --fw-regular-opp: var(--fw-regular-opp--light);
  --fw-medium-opp: var(--fw-medium-opp--light);
  --t-bright: var(--t-bright--light);
  --t-medium: var(--t-medium--light);
  --t-muted: var(--t-muted--light);
  --t-muted-extra: var(--t-muted-extra--light);
  --t-opp-bright: var(--t-opp-bright--light);
  --t-opp-medium: var(--t-opp-medium--light);
  --t-opp-muted: var(--t-opp-muted--light);
  --bg-demo-screen-01: var(--bg-demo-screen-01--light);
  --bg-demo-screen-02: var(--bg-demo-screen-02--light);
  --bg-demo-screen-03: var(--bg-demo-screen-03--light);
  --bg-demo-screen-04: var(--bg-demo-screen-04--light);
  --bg-demo-screen-05: var(--bg-demo-screen-05--light);
  --bg-demo-screen-06: var(--bg-demo-screen-06--light);
  --bg-demo-screen-07: var(--bg-demo-screen-07--light);
  --bg-demo-screen-08: var(--bg-demo-screen-08--light);
  --bg-demo-screen-09: var(--bg-demo-screen-09--light);
}

[color-scheme="dark"] {
  --base: var(--base--dark);
  --base-rgb: var(--base-rgb--dark);
  --base-tint: var(--base-tint--dark);
  --base-shade: var(--base-shade--dark);
  --base-opp: var(--base-opp--dark);
  --base-opp-tint: var(--base-opp-tint--dark);
  --accent: var(--accent--dark);
  --accent-rgb: var(--accent-rgb--dark);
  --additional: var(--additional--dark);
  --additional-rgb: var(--additional-rgb--dark);
  --neutral-transparent: var(--neutral-transparent--dark);
  --st-bright: var(--st-bright--dark);
  --st-medium: var(--st-medium--dark);
  --st-muted: var(--st-muted--dark);
  --st-opp-bright: var(--st-opp-bright--dark);
  --fw-regular: var(--fw-regular--dark);
  --fw-medium: var(--fw-medium--dark);
  --fw-semibold: var(--fw-semibold--dark);
  --fw-bold: var(--fw-bold--dark);
  --fw-regular-opp: var(--fw-regular-opp--dark);
  --fw-medium-opp: var(--fw-medium-opp--dark);
  --t-bright: var(--t-bright--dark);
  --t-medium: var(--t-medium--dark);
  --t-muted: var(--t-muted--dark);
  --t-muted-extra: var(--t-muted-extra--dark);
  --t-opp-bright: var(--t-opp-bright--dark);
  --t-opp-medium: var(--t-opp-medium--dark);
  --t-opp-muted: var(--t-opp-muted--dark);
  --bg-demo-screen-01: var(--bg-demo-screen-01--dark);
  --bg-demo-screen-02: var(--bg-demo-screen-02--dark);
  --bg-demo-screen-03: var(--bg-demo-screen-03--dark);
  --bg-demo-screen-04: var(--bg-demo-screen-04--dark);
  --bg-demo-screen-05: var(--bg-demo-screen-05--dark);
  --bg-demo-screen-06: var(--bg-demo-screen-06--dark);
  --bg-demo-screen-07: var(--bg-demo-screen-07--dark);
  --bg-demo-screen-08: var(--bg-demo-screen-08--dark);
  --bg-demo-screen-09: var(--bg-demo-screen-09--dark);
}

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

button:active,
button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

input::-moz-focus-inner {
  border: 0 !important;
}

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

a:focus,
button:focus,
input:focus,
textarea:focus {
  -webkit-tap-highlight-color: transparent;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

::-moz-selection {
  background-color: var(--accent);
  color: var(--t-opp-bright);
  text-shadow: none;
}

::selection {
  background-color: var(--accent);
  color: var(--t-opp-bright);
  text-shadow: none;
}

::-webkit-scrollbar {
  display: none;
  width: 6px;
  background: var(--base-shade);
}
@media only screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    display: block;
  }
}

::-webkit-scrollbar-track {
  background-color: var(--base-shade);
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: var(--_radius-s);
}

html {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  width: 100%;
  min-width: 360px;
  overflow-x: unset !important;
  font: normal 400 var(--_size)/1.6 var(--_font-default);
  text-rendering: optimizeLegibility;
  background-color: var(--base);
  color: var(--t-medium);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  position: relative;
  width: 100%;
  min-width: 360px;
}

a {
  text-decoration: none;
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
  transition: all var(--_animspeed-medium) var(--_animbezier);
}

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

.overflow-hidden {
  overflow: hidden !important;
}

.components {
  position: relative;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.mxd-page-content {
  position: relative;
}

.mxd-section {
  position: relative;
  width: 100%;
  min-width: 360px;
}
.mxd-section.padding-blog-default-pre-grid {
  padding-bottom: 3rem;
}

@media only screen and (min-width: 768px) {
  .mxd-section-inner-headline {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-section-inner-headline {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-section-inner-headline {
    padding-top: 17rem;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
  }
}

.mxd-section-inner-headline.padding-default {
  padding-bottom: 14rem;
}
@media only screen and (min-width: 768px) {
  .mxd-section-inner-headline.padding-default {
    padding-bottom: 16rem;
  }
  .mxd-section-inner-headline.padding-text-pre-block {
    padding-bottom: 32.8rem;
  }
  .mxd-section-inner-headline.padding-s-text-pre-form {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-section-inner-headline.padding-s-text-pre-form {
    padding-bottom: 3.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-section-inner-headline.padding-default {
    padding-bottom: 20rem;
  }
  .mxd-section-inner-headline.padding-s-text-pre-form {
    padding-bottom: 3rem;
  }
}

.mxd-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  padding: 0 3rem;
  margin: 0 auto;
}
.mxd-container.grid-container {
  padding: 0 1.5rem;
}
@media only screen and (min-width: 768px) {
  .mxd-container {
    padding: 0 6rem;
  }
  .mxd-container.grid-container {
    padding: 0 4.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-container {
    padding: 0 9rem;
  }
  .mxd-container.grid-container {
    padding: 0 7.5rem;
  }
}

@media only screen and (min-width: 768px) {
  .mxd-engine-viewer-section > .mxd-container.grid-container {
    padding: 0 6rem;
  }
}

@media only screen and (min-width: 1600px) {
  .mxd-engine-viewer-section > .mxd-container.grid-container {
    padding: 0 9rem;
  }
}

.mxd-grid-item {
  padding: 0 1.5rem;
  margin-top: 3rem;
}
.mxd-grid-item.no-margin {
  margin: 0;
}
.mxd-grid-item.no-margin-desktop {
  margin-top: 3rem;
}
@media only screen and (min-width: 1200px) {
  .mxd-grid-item.no-margin-desktop {
    margin: 0;
  }
}

.mxd-block {
  position: relative;
}

.mxd-block__name {
  position: relative;
}
.mxd-block__name.name-inner-headline {
  margin-bottom: 0.2rem;
}
@media only screen and (min-width: 768px) {
  .mxd-block__name.name-inner-headline {
    margin-bottom: 0.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-block__name.name-inner-headline {
    margin-bottom: 0;
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-block__name.name-inner-headline {
    margin-top: 2.6rem;
  }
}

.inner-headline__title {
  position: relative;
}

.inner-headline__text {
  margin-top: 3.3rem;
}
@media only screen and (min-width: 768px) {
  .inner-headline__text {
    margin-top: 4.9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .inner-headline__text {
    margin-top: 4.6rem;
  }
}
@media only screen and (min-width: 1600px) {
  .inner-headline__text {
    margin-top: 5.9rem;
  }
}

.mxd-pinned-fullscreen__tl-trigger {
  position: absolute;
  right: 0;
  bottom: 30vh;
  width: 1px;
  height: 1px;
}

h1 {
  font: normal var(--fw-medium) 6rem/1.1 var(--_font-accent);
  letter-spacing: -0.06rem;
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 10rem;
  }
}
@media only screen and (min-width: 1600px) {
  h1 {
    font-size: 12rem;
  }
}

.typed-cursor {
  color: var(--accent);
}

h2 {
  font: normal var(--fw-medium) 4.4rem/1.1 var(--_font-accent);
  letter-spacing: -0.06rem;
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 7rem;
  }
  h2.h2-small {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 1600px) {
  h2 {
    font-size: 7rem;
  }
  h2.h2-small {
    font-size: 7rem;
  }
}

h3 {
  font: normal var(--fw-medium) 3.6rem/1.2 var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 5rem;
  }
}

h4 {
  font: normal var(--fw-medium) 3rem/1.2 var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 1200px) {
  h4 {
    font-size: 4.4rem;
  }
}

h5 {
  font: normal var(--fw-medium) 2.6rem/1.2 var(--_font-accent);
  color: var(--t-bright);
}
h5 small {
  display: block;
  font: normal var(--fw-regular) 1.6rem/1.2 var(--_font-accent);
  color: var(--t-medium);
  margin-top: 0.2rem;
}
h5 a {
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  h5 {
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 1600px) {
  h5 small {
    font-size: 1.8rem;
  }
}

h6 {
  font: normal var(--fw-medium) 2.2rem/1.2 var(--_font-accent);
  color: var(--t-bright);
}
h6 a {
  color: var(--t-bright);
}
@media only screen and (min-width: 1200px) {
  h6 {
    font-size: 3rem;
  }
}

p {
  font: normal var(--fw-regular) 1.8rem/1.6 var(--_font-accent);
  color: var(--t-medium);
}
p span,
p a {
  color: var(--t-bright);
}
p span {
  font-weight: var(--fw-semibold);
}
p a {
  text-decoration: none;
  background:
    -webkit-gradient(
      linear,
      left top,
      right top,
      from(var(--t-medium)),
      to(var(--t-medium))
    ),
    -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(0, 0, 0, 0)),
        to(rgba(0, 0, 0, 0))
      );
  background:
    -moz-linear-gradient(left, var(--t-medium), var(--t-medium)),
    -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  background:
    linear-gradient(to right, var(--t-medium), var(--t-medium)),
    linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  -moz-background-size:
    100% 1px,
    0 1px;
  background-size:
    100% 1px,
    0 1px;
  background-position:
    100% 100%,
    0 100%;
  background-repeat: no-repeat;
  -webkit-transition:
    background-size 400ms,
    color 300ms;
  -moz-transition:
    background-size 400ms,
    color 300ms,
    -moz-background-size 400ms;
  transition:
    background-size 400ms,
    color 300ms;
  transition:
    background-size 400ms,
    color 300ms,
    -moz-background-size 400ms;
}
.no-touch p a:hover {
  color: var(--t-bright);
  -moz-background-size:
    0 1px,
    100% 1px;
  background-size:
    0 1px,
    100% 1px;
}
p.t-140 {
  line-height: 1.4;
}
p.t-xsmall {
  font-size: 1.4rem;
  line-height: 1.2;
}
p.t-small {
  font-size: 1.8rem;
}
p.t-large {
  font-family: var(--_font-accent);
  font-size: 2.5rem;
  color: var(--t-bright);
}
p.t-muted {
  color: var(--t-muted);
}
p.t-muted span {
  color: var(--t-medium);
}
p.t-muted a {
  font-weight: var(--fw-regular);
  color: var(--t-muted);
  text-decoration: none;
  background:
    -webkit-gradient(
      linear,
      left top,
      right top,
      from(var(--t-muted)),
      to(var(--t-muted))
    ),
    -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(0, 0, 0, 0)),
        to(rgba(0, 0, 0, 0))
      );
  background:
    -moz-linear-gradient(left, var(--t-muted), var(--t-muted)),
    -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  background:
    linear-gradient(to right, var(--t-muted), var(--t-muted)),
    linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  -moz-background-size:
    100% 1px,
    0 1px;
  background-size:
    100% 1px,
    0 1px;
  background-position:
    100% 100%,
    0 100%;
  background-repeat: no-repeat;
  -webkit-transition:
    background-size 400ms,
    color 300ms;
  -moz-transition:
    background-size 400ms,
    color 300ms,
    -moz-background-size 400ms;
  transition:
    background-size 400ms,
    color 300ms;
  transition:
    background-size 400ms,
    color 300ms,
    -moz-background-size 400ms;
}
.no-touch p.t-muted a:hover {
  color: var(--t-medium);
  -moz-background-size:
    0 1px,
    100% 1px;
  background-size:
    0 1px,
    100% 1px;
}
p.t-muted a.no-effect {
  background: none;
}
p.t-bright {
  color: var(--t-bright);
}
@media only screen and (min-width: 1600px) {
  p {
    font-size: 2.2rem;
  }
  p.t-large {
    font-size: 3rem;
  }
  p.t-small {
    font-size: 1.8rem;
  }
}

.mxd-point-subtitle {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: left;
  -moz-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  gap: 1rem;
  font: normal var(--fw-regular) 2.2rem/1.2 var(--_font-accent);
  color: var(--t-bright);
}
.mxd-point-subtitle svg {
  width: 1.9rem;
  height: 1.9rem;
  fill: var(--t-bright);
}
.mxd-point-subtitle span {
  font-weight: var(--fw-regular);
}
.mxd-point-subtitle a {
  color: var(--t-bright);
  background: none;
}
.no-touch .mxd-point-subtitle:hover a {
  color: var(--t-medium);
}

.mxd-stats-number {
  font: normal var(--fw-medium) 7rem/0.8 var(--_font-accent);
  color: var(--t-bright);
  letter-spacing: -0.1rem;
}
.mxd-stats-number.small {
  font-size: 5rem;
}
@media only screen and (min-width: 768px) {
  .mxd-stats-number.small {
    font-size: 7rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-stats-number {
    font-size: 9rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-stats-number {
    font-size: 12rem;
  }
}

.mxd-color-switcher {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 4.6rem;
  height: 4.6rem;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: none;
  outline: 0;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  color: var(--t-bright);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.mxd-color-switcher::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  -moz-transform: translateX(-50%) translateY(-50%) scale(1);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1);
  width: 100%;
  height: 100%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition:
    background-color var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium);
  transition:
    background-color var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium);
  -moz-transition:
    transform var(--_animspeed-medium),
    background-color var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium);
  transition:
    transform var(--_animspeed-medium),
    background-color var(--_animspeed-medium) var(--_animbezier);
  transition:
    transform var(--_animspeed-medium),
    background-color var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium),
    -moz-transform var(--_animspeed-medium);
}
.mxd-color-switcher i {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  font-size: 2rem;
  overflow: hidden;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform var(--_animspeed-medium)
    var(--_animbezier);
  transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
  -moz-transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
  transition: transform var(--_animspeed-medium) var(--_animbezier);
  transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
}
.no-touch .mxd-color-switcher:hover::before {
  background-color: var(--base-tint);
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.04);
  -moz-transform: translateX(-50%) translateY(-50%) scale(1.04);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.04);
  transform: translateX(-50%) translateY(-50%) scale(1.04);
}
.no-touch .mxd-color-switcher:hover i {
  -webkit-transform: scale(0.92);
  -moz-transform: scale(0.92);
  -ms-transform: scale(0.92);
  transform: scale(0.92);
}
@media only screen and (min-width: 768px) {
  .mxd-color-switcher {
    width: 5.6rem;
    height: 5.6rem;
  }
  .mxd-color-switcher i {
    font-size: 3rem;
  }
}

.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.4rem;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-to-top {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  width: 4.6rem;
  height: 4.6rem;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border-width: 2px;
  background-color: #000;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--nl-white);
  font: normal var(--fw-regular) 2.2rem/1.5 var(--_font-accent);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform var(--_animspeed-medium)
    var(--_animbezier);
  transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
  -moz-transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
  transition: transform var(--_animspeed-medium) var(--_animbezier);
  transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
  z-index: 9;
  overflow: hidden;
}
.btn-to-top i {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  font-size: 2.2rem;
  overflow: hidden;
}
.no-touch .btn-to-top:hover {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}
@media only screen and (min-width: 768px) {
  .btn-to-top {
    right: 6rem;
    bottom: 4rem;
    width: 5.6rem;
    height: 5.6rem;
  }
  .btn-to-top i {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .btn-to-top {
    right: 9rem;
  }
}

.btn-to-top {
  border: 2px solid #11cee3;
}

.btn-line-xsmall {
  font: normal var(--fw-regular) 1.4rem/1.2 var(--_font-accent);
  gap: 0.6rem;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: auto;
}
.btn-line-xsmall i,
.btn-line-xsmall .btn-caption {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.btn-line-xsmall i {
  font-size: 1.6rem;
  overflow: hidden;
}

.btn-line-headline {
  gap: 1rem;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: auto;
  font: normal var(--fw-medium) 3.6rem/1.1 var(--_font-accent);
  letter-spacing: -0.06rem;
  color: var(--t-muted-extra);
  margin-top: 1rem;
}
.btn-line-headline i,
.btn-line-headline .btn-caption {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.btn-line-headline i {
  font-size: 3.1rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .btn-line-headline {
    font-size: 8rem;
    margin-top: 0;
  }
  .btn-line-headline i {
    font-size: 6.7rem;
  }
}
@media only screen and (min-width: 1200px) {
  .btn-line-headline {
    font-size: 10rem;
  }
  .btn-line-headline i {
    font-size: 8.7rem;
  }
  .no-touch .btn-line-headline:hover {
    color: var(--accent);
  }
}
@media only screen and (min-width: 1600px) {
  .btn-line-headline {
    font-size: 12rem;
  }
  .btn-line-headline i {
    font-size: 10.1rem;
  }
}

.btn-default {
  height: 5.6rem;
  line-height: 5.6rem;
  gap: 1.2rem;
  padding: 0 2.2rem;
  -moz-border-radius: 2.8rem;
  border-radius: 2.8rem;
  border-width: 2px;
  font: normal var(--fw-medium) 2.2rem/1.5 var(--_font-accent);
}
.btn-default i,
.btn-default .btn-caption {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.btn-default i {
  font-size: 2.6rem;
  overflow: hidden;
}

.post-simple__btn > a + a {
  margin-left: 12px;
}

.btn-large {
  height: 5.6rem;
  line-height: 5.6rem;
  gap: 1.2rem;
  padding: 0 2.2rem;
  -moz-border-radius: 2.8rem;
  border-radius: 2.8rem;
  border-width: 2px;
  font: normal var(--fw-medium) 2.2rem/1.5 var(--_font-accent);
}
.btn-large i {
  font-size: 2.6rem;
}
@media only screen and (min-width: 768px) {
  .btn-large {
    height: 8.4rem;
    line-height: 8.4rem;
    gap: 1.6rem;
    padding: 0 3.2rem;
    -moz-border-radius: 4.2rem;
    border-radius: 4.2rem;
    border-width: 2px;
    font: normal var(--fw-medium) 3rem/1.5 var(--_font-accent);
  }
  .btn-large i {
    font-size: 3.6rem;
  }
}

.btn-round {
  width: 5.6rem;
  height: 5.6rem;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border-width: 2px;
  font: normal var(--fw-regular) 2.2rem/1.5 var(--_font-accent);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform var(--_animspeed-medium)
    var(--_animbezier);
  transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
  -moz-transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
  transition: transform var(--_animspeed-medium) var(--_animbezier);
  transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
}
.btn-round i {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  font-size: 2.5rem;
  overflow: hidden;
}
.no-touch .btn-round:hover {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.btn-outline {
  background-color: transparent;
  border-style: solid;
  border-color: var(--st-bright);
  color: var(--t-bright);
}

.btn-opposite {
  background-color: var(--base-opp);
  border-style: solid;
  border-color: var(--base-opp);
  color: #111;
  margin-bottom: 10rem;
}

.btn-muted {
  background-color: transparent;
  color: var(--t-muted);
}
.no-touch .btn-muted:hover {
  color: var(--t-bright);
}

.btn-anim.play .btn-anim__letter {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.btn-anim:hover .btn-anim__letter {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.btn-anim .btn-caption {
  display: block !important;
  height: 3.3rem;
  line-height: 3.3rem;
  overflow: hidden;
}

.btn-live {
  border: 2px solid #11cee3;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .btn-live {
    margin-top: 0;
    margin-left: 1.5rem;
  }
}

.btn-anim__letter {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.76, 0, 0.024, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.76, 0, 0.024, 1);
  -moz-transition:
    transform 0.5s cubic-bezier(0.76, 0, 0.024, 1),
    -moz-transform 0.5s cubic-bezier(0.76, 0, 0.024, 1);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.024, 1);
  transition:
    transform 0.5s cubic-bezier(0.76, 0, 0.024, 1),
    -webkit-transform 0.5s cubic-bezier(0.76, 0, 0.024, 1),
    -moz-transform 0.5s cubic-bezier(0.76, 0, 0.024, 1);
}

.btn-anim .btn-anim__block:last-child {
  color: var(--primary);
}

.btn-anim__letter:nth-child(1) {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.btn-anim__letter:nth-child(2) {
  -webkit-transition-delay: 0.03s;
  -moz-transition-delay: 0.03s;
  transition-delay: 0.03s;
}
.btn-anim__letter:nth-child(3) {
  -webkit-transition-delay: 0.06s;
  -moz-transition-delay: 0.06s;
  transition-delay: 0.06s;
}
.btn-anim__letter:nth-child(4) {
  -webkit-transition-delay: 0.09s;
  -moz-transition-delay: 0.09s;
  transition-delay: 0.09s;
}
.btn-anim__letter:nth-child(5) {
  -webkit-transition-delay: 0.12s;
  -moz-transition-delay: 0.12s;
  transition-delay: 0.12s;
}
.btn-anim__letter:nth-child(6) {
  -webkit-transition-delay: 0.15s;
  -moz-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.btn-anim__letter:nth-child(7) {
  -webkit-transition-delay: 0.18s;
  -moz-transition-delay: 0.18s;
  transition-delay: 0.18s;
}
.btn-anim__letter:nth-child(8) {
  -webkit-transition-delay: 0.21s;
  -moz-transition-delay: 0.21s;
  transition-delay: 0.21s;
}
.btn-anim__letter:nth-child(9) {
  -webkit-transition-delay: 0.24s;
  -moz-transition-delay: 0.24s;
  transition-delay: 0.24s;
}
.btn-anim__letter:nth-child(10) {
  -webkit-transition-delay: 0.27s;
  -moz-transition-delay: 0.27s;
  transition-delay: 0.27s;
}
.btn-anim__letter:nth-child(11) {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.btn-anim__letter:nth-child(12) {
  -webkit-transition-delay: 0.33s;
  -moz-transition-delay: 0.33s;
  transition-delay: 0.33s;
}
.btn-anim__letter:nth-child(13) {
  -webkit-transition-delay: 0.36s;
  -moz-transition-delay: 0.36s;
  transition-delay: 0.36s;
}
.btn-anim__letter:nth-child(14) {
  -webkit-transition-delay: 0.39s;
  -moz-transition-delay: 0.39s;
  transition-delay: 0.39s;
}
.btn-anim__letter:nth-child(15) {
  -webkit-transition-delay: 0.42s;
  -moz-transition-delay: 0.42s;
  transition-delay: 0.42s;
}
.btn-anim__letter:nth-child(16) {
  -webkit-transition-delay: 0.45s;
  -moz-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
.btn-anim__letter:nth-child(17) {
  -webkit-transition-delay: 0.48s;
  -moz-transition-delay: 0.48s;
  transition-delay: 0.48s;
}
.btn-anim__letter:nth-child(18) {
  -webkit-transition-delay: 0.51s;
  -moz-transition-delay: 0.51s;
  transition-delay: 0.51s;
}
.btn-anim__letter:nth-child(19) {
  -webkit-transition-delay: 0.54s;
  -moz-transition-delay: 0.54s;
  transition-delay: 0.54s;
}
.btn-anim__letter:nth-child(20) {
  -webkit-transition-delay: 0.57s;
  -moz-transition-delay: 0.57s;
  transition-delay: 0.57s;
}
.btn-anim__letter:nth-child(21) {
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.btn-anim__letter:nth-child(22) {
  -webkit-transition-delay: 0.63s;
  -moz-transition-delay: 0.63s;
  transition-delay: 0.63s;
}
.btn-anim__letter:nth-child(23) {
  -webkit-transition-delay: 0.66s;
  -moz-transition-delay: 0.66s;
  transition-delay: 0.66s;
}
.btn-anim__letter:nth-child(24) {
  -webkit-transition-delay: 0.69s;
  -moz-transition-delay: 0.69s;
  transition-delay: 0.69s;
}
.btn-anim__letter:nth-child(25) {
  -webkit-transition-delay: 0.72s;
  -moz-transition-delay: 0.72s;
  transition-delay: 0.72s;
}
.btn-anim__letter:nth-child(26) {
  -webkit-transition-delay: 0.75s;
  -moz-transition-delay: 0.75s;
  transition-delay: 0.75s;
}
.btn-anim__letter:nth-child(27) {
  -webkit-transition-delay: 0.78s;
  -moz-transition-delay: 0.78s;
  transition-delay: 0.78s;
}
.btn-anim__letter:nth-child(28) {
  -webkit-transition-delay: 0.81s;
  -moz-transition-delay: 0.81s;
  transition-delay: 0.81s;
}
.btn-anim__letter:nth-child(29) {
  -webkit-transition-delay: 0.84s;
  -moz-transition-delay: 0.84s;
  transition-delay: 0.84s;
}
.btn-anim__letter:nth-child(30) {
  -webkit-transition-delay: 0.87s;
  -moz-transition-delay: 0.87s;
  transition-delay: 0.87s;
}

.btn-mobile-icon {
  width: 4.6rem;
  height: 4.6rem;
  padding: 0;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-mobile-icon i {
  font-size: 2rem;
}
.btn-mobile-icon .btn-caption {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .btn-mobile-icon {
    width: auto;
    height: 5.6rem;
    padding: 0 2.2rem;
    -moz-border-radius: 2.8rem;
    border-radius: 2.8rem;
  }
  .btn-mobile-icon i {
    font-size: 2.6rem;
  }
  .btn-mobile-icon .btn-caption {
    display: block !important;
  }
}

.tag {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tag-default {
  height: 3.2rem;
  line-height: 3.2rem;
  padding: 0 1.2rem;
  -moz-border-radius: 1.6rem;
  border-radius: 1.6rem;
  border-width: 1px;
  font: normal var(--fw-regular) 1.4rem/1.5 var(--_font-accent);
}
@media only screen and (min-width: 1600px) {
  .tag-default {
    height: 3.6rem;
    line-height: 3.6rem;
    padding: 0 1.4rem;
    -moz-border-radius: 1.8rem;
    border-radius: 1.8rem;
    font-size: 1.6rem;
  }
}

.tag-outline {
  background-color: transparent;
  border-style: solid;
  border-color: var(--st-bright);
  color: var(--t-bright);
}

.tag-outline-permanent {
  background-color: transparent;
  border-style: solid;
  border-color: var(--pt-st-light-bright);
  color: var(--pt-t-light-bright);
}

.tag-link-outline-premanent {
  -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
  transition: all var(--_animspeed-medium) var(--_animbezier);
}
.tag-link-outline-premanent a {
  color: var(--pt-t-light-bright);
}
.no-touch .tag-link-outline-premanent:hover {
  background-color: var(--pt-base);
  border-color: var(--pt-st-light-bright);
  color: var(--pt-t-dark-bright);
}
.no-touch .tag-link-outline-premanent:hover a {
  color: var(--pt-t-dark-bright);
}

.slide-right:hover i::before {
  -webkit-animation: 0.6s var(--_animbezier) 0.3s 1 both slideRight;
  -moz-animation: 0.6s var(--_animbezier) 0.3s 1 both slideRight;
  animation: 0.6s var(--_animbezier) 0.3s 1 both slideRight;
}

.slide-right-up:hover i::before {
  -webkit-animation: 0.6s var(--_animbezier) 0.3s 1 both slideRightUp;
  -moz-animation: 0.6s var(--_animbezier) 0.3s 1 both slideRightUp;
  animation: 0.6s var(--_animbezier) 0.3s 1 both slideRightUp;
}

.slide-up:hover i::before {
  -webkit-animation: 0.6s var(--_animbezier) 0s 1 both slideUp;
  -moz-animation: 0.6s var(--_animbezier) 0s 1 both slideUp;
  animation: 0.6s var(--_animbezier) 0s 1 both slideUp;
}

.anim-no-delay:hover i::before {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes slideRight {
  0% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slideRightUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%) translateY(100%);
    transform: translateX(-100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@-moz-keyframes slideRightUp {
  0% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  50% {
    -moz-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(-100%) translateY(100%);
    transform: translateX(-100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@keyframes slideRightUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(-100%);
    -moz-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%) translateY(100%);
    -moz-transform: translateX(-100%) translateY(100%);
    transform: translateX(-100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes slideRightDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@-moz-keyframes slideRightDown {
  0% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  50% {
    -moz-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@keyframes slideRightDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(100%) translateY(100%);
    -moz-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(-100%) translateY(-100%);
    -moz-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes slideLeft {
  0% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slideLeftUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@-moz-keyframes slideLeftUp {
  0% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  50% {
    -moz-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@keyframes slideLeftUp {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-100%) translateY(-100%);
    -moz-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%) translateY(100%);
    -moz-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes slideLeftDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-100%) translateY(100%);
    transform: translateX(-100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@-moz-keyframes slideLeftDown {
  0% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  50% {
    -moz-transform: translateX(-100%) translateY(100%);
    transform: translateX(-100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@keyframes slideLeftDown {
  0% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-100%) translateY(100%);
    -moz-transform: translateX(-100%) translateY(100%);
    transform: translateX(-100%) translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateX(100%) translateY(-100%);
    -moz-transform: translateX(100%) translateY(-100%);
    transform: translateX(100%) translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    -moz-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes slideUp {
  0% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -moz-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 0;
  }
  52% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
  53% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.form-container {
  position: relative;
}

.form {
  opacity: 1;
  -webkit-transition: opacity var(--_animspeed-slow) ease-in-out;
  -moz-transition: opacity var(--_animspeed-slow) ease-in-out;
  transition: opacity var(--_animspeed-slow) ease-in-out;
}
.form.is-hidden {
  opacity: 0;
}

form {
  position: relative;
  width: 100%;
}
form input,
form textarea {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  outline: none;
  margin: 0;
  padding: 1.2rem 0.2rem;
  background-color: transparent;
  border-bottom: 2px solid var(--st-medium);
  font: normal var(--fw-regular) 2.2rem var(--_font-accent);
  height: 6rem;
  line-height: 6rem;
  color: var(--t-bright);
}
form input:focus,
form textarea:focus {
  border-bottom: 2px solid var(--st-bright);
}
form textarea {
  height: 16rem;
  line-height: 1.6;
  resize: none;
}
form ::-webkit-input-placeholder {
  color: var(--t-muted);
}
form :-moz-placeholder {
  color: var(--t-muted);
}
form ::-moz-placeholder {
  color: var(--t-muted);
}
form :-ms-input-placeholder {
  color: var(--t-muted);
}
form input:focus:required:invalid,
form textarea:focus:required:invalid {
  color: var(--t-bright);
}
form input:required:valid,
form textarea:required:valid {
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  form textarea {
    height: 23rem;
  }
}
@media only screen and (min-width: 1600px) {
  form input,
  form textarea {
    font-size: 2.2rem;
  }
}

.form__reply {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity var(--_animspeed-slow) ease-in-out;
  -moz-transition: opacity var(--_animspeed-slow) ease-in-out;
  transition: opacity var(--_animspeed-slow) ease-in-out;
}
.form__reply.centered {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  max-width: 400px;
}
.form__reply.is-visible {
  opacity: 1;
}

.reply__icon {
  display: block;
  font-size: 6rem;
  color: var(--t-bright);
  margin-bottom: 1.2rem;
}

.reply__title {
  font: normal var(--fw-medium) 3.6rem/1.2 var(--_font-accent);
  color: var(--t-bright);
  margin-bottom: 1.4rem;
}

.reply__text {
  display: block;
  font: normal var(--fw-regular) 1.8rem/1.6 var(--_font-accent);
  color: var(--t-medium);
}

.mxd-logo {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: left;
  -moz-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .mxd-logo {
    gap: 1.4rem;
  }
}

.mxd-logo__image {
  display: block;
  width: 4.6rem;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .mxd-logo__image {
    width: 5.6rem;
  }
}

.mxd-logo__text {
  font: normal var(--fw-medium) 1.9rem/1.1 var(--_font-accent);
  letter-spacing: normal;
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  .mxd-logo__text {
    font-size: 2.4rem;
  }
}

.mxd-section-title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.4rem;
  text-align: left;
  margin-bottom: 7rem;
}
.mxd-section-title.h2-only {
  margin-bottom: 6.2rem;
}
.mxd-section-title.no-margin {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .mxd-section-title {
    margin-bottom: 8rem;
  }
  .mxd-section-title.h2-only {
    margin-bottom: 6.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-section-title {
    margin-bottom: 6.7rem;
  }
  .mxd-section-title.no-margin-desktop {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-section-title {
    gap: 4.2rem;
    margin-bottom: 6.7rem;
  }
}

@media only screen and (min-width: 1200px) {
  .mxd-section-title__title.card-split-title {
    margin-top: -1.6rem;
  }
}

.mxd-preview-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  -webkit-transition:
    fbackdrop-filter var(--_animspeed-medium),
    opacity var(--_animspeed-medium) var(--_animbezier);
  -moz-transition:
    fbackdrop-filter var(--_animspeed-medium),
    opacity var(--_animspeed-medium) var(--_animbezier);
  transition:
    fbackdrop-filter var(--_animspeed-medium),
    opacity var(--_animspeed-medium) var(--_animbezier);
}

.mxd-preview-hover__icon {
  display: block;
  width: 10rem;
}
.mxd-preview-hover__icon.icon-small {
  width: 8rem;
}
.mxd-preview-hover__icon img {
  width: 100%;
  height: auto;
}

.mxd-counter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}
.mxd-counter.small {
  gap: 2rem;
}
.mxd-counter.horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.4rem;
}

.bg-base-tint {
  background-color: var(--base-tint);
}

.radius-m {
  -moz-border-radius: var(--_radius-m);
  border-radius: var(--_radius-m);
}

.anim-zoom-in-container,
.anim-zoom-out-container {
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.inner-headline__avatar {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1199px) {
  .inner-headline__avatar {
    width: 240px;
    height: 240px;
  }

  .inner-headline__title {
    text-align: center;
  }
}

@media (max-width: 1199px) {
  .inner-headline__profile {
    margin-bottom: 16px;
  }
}

.inner-headline__profile {
  display: flex;
  justify-content: center;
}

.post-featured__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mxd-section-inner-headline .row,
.mxd-section-inner-headline .mxd-block {
  position: relative;
  z-index: 2;
}

.mxd-section-inner-headline .container-fluid {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#matrix {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  background: transparent;
  pointer-events: none;
}

#canvas {
  position: fixed;
  inset: 0;
  overflow: hidden;
  mix-blend-mode: lighten;
  pointer-events: none;
}

.mxd-section-inner-headline .container-fluid > .row {
  position: relative;
  z-index: 1;
  margin-top: 130px;
}

#color-switcher {
  display: none !important;
}
.mxd-section-inner-headline {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.mxd-section-inner-headline .mxd-container {
  width: 100%;
}

.mxd-section-inner-headline .mxd-block {
  width: 100%;
}

.mxd-block__content {
  display: flex;
  align-items: center;
  min-height: 70vh;
}
.mxd-block__content {
  display: flex;
  align-items: center;
  min-height: 70vh;
}

@media only screen and (max-width: 1199.98px) {
  .mxd-block__content {
    min-height: 50vh;
  }
}

@media only screen and (max-width: 991.98px) {
  .mxd-block__content {
    min-height: 36vh;
  }
}

@media only screen and (max-width: 767.98px) {
  .mxd-block__content {
    min-height: 30vh;
  }
}

.mxd-block__inner-headline {
  width: 100%;
}

.mxd-header {
  position: absolute;
  top: 0;
  left: 3rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  width: -moz-calc(100% - 11.6rem);
  width: calc(100% - 11.6rem);
  padding-top: 3rem;
  z-index: 101;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  -webkit-transition: all var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: all var(--_animspeed-medium) var(--_animbezier);
  transition: all var(--_animspeed-medium) var(--_animbezier);
}
.mxd-header.is-hidden {
  -webkit-transform: scaleY(1.2);
  -moz-transform: scaleY(1.2);
  -ms-transform: scaleY(1.2);
  transform: scaleY(1.2);
  opacity: 0;
}
.mxd-header.menu-is-visible {
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .mxd-header {
    left: 6rem;
    width: -moz-calc(100% - 19.6rem);
    width: calc(100% - 19.6rem);
    padding-top: 4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-header {
    left: 9rem;
    width: -moz-calc(100% - 25.6rem);
    width: calc(100% - 25.6rem);
  }
}

.mxd-header__logo {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.mxd-header__controls {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .mxd-header__controls {
    gap: 2rem;
  }
}

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

.mxd-nav__contain {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 4.6rem;
  margin-top: 3rem;
  padding: 0 3rem;
  z-index: 2;
  pointer-events: none;
}
.mxd-nav__contain > * {
  pointer-events: auto;
}
@media only screen and (min-width: 768px) {
  .mxd-nav__contain {
    min-height: 5.6rem;
    margin-top: 4rem;
    padding: 0 6rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-nav__contain {
    padding: 0 9rem;
  }
}

.mxd-nav__hamburger {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.7rem;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 4.6rem;
  height: 4.6rem;
}
@media only screen and (min-width: 768px) {
  .mxd-nav__hamburger {
    width: 5.6rem;
    height: 5.6rem;
  }
}

.hamburger__base {
  position: absolute;
  inset: 0%;
  -moz-border-radius: var(--_radius-l);
  border-radius: var(--_radius-l);
  background-color: var(--base-opp-tint);
  z-index: 1;
  backdrop-filter: blur(8px);
  border: 2px solid #11cee3;
  background: rgba(0, 0, 0, 0.8);
}

.hamburger__line {
  position: relative;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%;
  height: 0.3rem;
  -moz-border-radius: 0.3rem;
  border-radius: 0.3rem;
  background-color: var(--t-opp-bright);
  z-index: 2;
}

.mxd-menu__wrapper {
  position: absolute;
  inset: 0% 0% auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
  z-index: 1;
  padding: 1.5rem;
  display: none;
}
@media only screen and (min-width: 768px) {
  .mxd-menu__wrapper {
    padding: 2rem 4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-menu__wrapper {
    padding: 2rem 7rem;
  }
}

.mxd-menu__base {
  position: absolute;
  inset: 0%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mxd-menu__contain {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: 85%;
}

.mxd-menu__inner {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-top: 7.6rem;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.mxd-menu__inner::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none !important;
  width: 0 !important;
  height: 0;
}
@media only screen and (min-width: 768px) {
  .mxd-menu__inner::-webkit-scrollbar {
    display: none;
    width: 0 !important;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-menu__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    overflow: hidden;
    padding-top: 0;
  }
}

.mxd-menu__left {
  width: 100%;
  height: auto;
  padding: 0 3rem;
  z-index: 2;
}
@media only screen and (min-width: 1200px) {
  .mxd-menu__left {
    width: 50%;
    height: 100%;
    padding: 4rem 4rem 0 4rem;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
  }
  .mxd-menu__left::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none !important;
    width: 0 !important;
    height: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-menu__left {
    padding-top: 6rem;
    padding: 6rem 7rem 0 7rem;
  }
}

.mxd-menu__right {
  position: relative;
  padding-top: 5.2rem;
  z-index: 2;
}
@media only screen and (min-width: 1200px) {
  .mxd-menu__right {
    width: 50%;
    height: 100%;
    padding-top: 0;
  }
}

.mxd-menu__data {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: left;
  -moz-box-align: left;
  -ms-flex-align: left;
  align-items: left;
  gap: 0.6rem;
  padding: 0 3rem 2.6rem 3rem;
  margin-top: 2.4rem;
  text-align: center;
  z-index: 2;
}
.mxd-menu__data p {
  color: var(--t-opp-medium);
  margin-top: 4rem;
}
.mxd-menu__data p a {
  color: var(--t-opp-medium);
  text-decoration: none;
  background:
    -webkit-gradient(
      linear,
      left top,
      right top,
      from(var(--t-opp-muted)),
      to(var(--t-opp-muted))
    ),
    -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(0, 0, 0, 0)),
        to(rgba(0, 0, 0, 0))
      );
  background:
    -moz-linear-gradient(left, var(--t-opp-muted), var(--t-opp-muted)),
    -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  background:
    linear-gradient(to right, var(--t-opp-muted), var(--t-opp-muted)),
    linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  -moz-background-size:
    100% 1px,
    0 1px;
  background-size:
    100% 1px,
    0 1px;
  background-position:
    100% 100%,
    0 100%;
  background-repeat: no-repeat;
  -webkit-transition:
    background-size 400ms,
    color 300ms;
  -moz-transition:
    background-size 400ms,
    color 300ms,
    -moz-background-size 400ms;
  transition:
    background-size 400ms,
    color 300ms;
  transition:
    background-size 400ms,
    color 300ms,
    -moz-background-size 400ms;
}
.no-touch .mxd-menu__data p a:hover {
  color: var(--t-opp-bright);
  -moz-background-size:
    0 1px,
    100% 1px;
  background-size:
    0 1px,
    100% 1px;
}
@media only screen and (min-width: 1200px) {
  .mxd-menu__data {
    position: relative;
    bottom: auto;
    left: auto;
  }
}

@media only screen and (min-width: 1600px) {
  .mxd-menu__data {
    bottom: 6rem;
    padding: 0 7rem;
  }
}

.mxd-menu__caption {
  margin-bottom: 4.4rem;
  font-weight: var(--fw-regular-opp);
  color: var(--t-opp-medium);
}
@media only screen and (min-width: 1200px) {
  .mxd-menu__caption {
    max-width: 380px;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-menu__caption {
    max-width: 460px;
  }
}

.main-menu {
  position: relative;
}

.main-menu__accordion {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
}
@media only screen and (min-width: 1200px) {
  .main-menu__accordion {
    gap: 2rem;
  }
}

.main-menu__item {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  color: var(--t-opp-bright);
}
.main-menu__item a {
  display: inline-block;
}
.main-menu__item.open .main-menu__toggle svg {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.main-menu__link {
  height: 4.2rem;
  line-height: 4.2rem;
  font: normal var(--fw-medium-opp) 3.6rem var(--_font-accent);
  color: var(--t-opp-bright);
}
.main-menu__link .btn-caption {
  height: 4.2rem;
  line-height: 4.2rem;
}
@media only screen and (min-width: 1200px) {
  .main-menu__link {
    font-size: 5.6rem;
    height: 6.5rem;
    line-height: 6.5rem;
  }
  .main-menu__link .btn-caption {
    height: 6.5rem;
    line-height: 6.5rem;
  }
}

.main-menu__toggle {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.main-menu__toggle img,
.main-menu__toggle svg {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1.9rem;
  height: 1.9rem;
  -webkit-transition: -webkit-transform var(--_animspeed-medium)
    var(--_animbezier);
  transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
  -moz-transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
  transition: transform var(--_animspeed-medium) var(--_animbezier);
  transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
}
.main-menu__toggle svg {
  fill: currentColor;
}
.no-touch .main-menu__toggle:hover svg {
  fill: var(--additional);
}
@media only screen and (min-width: 1200px) {
  .main-menu__toggle img,
  .main-menu__toggle svg {
    width: 2.3rem;
    height: 2.3rem;
  }
}

.submenu {
  position: relative;
  padding-top: 2rem;
  padding-left: 1.5rem;
  display: none;
}
@media only screen and (min-width: 768px) {
  .submenu {
    padding-left: 2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .submenu {
    padding-left: 3.5rem;
  }
}

.submenu__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1.2rem;
}
.submenu__item:last-of-type {
  margin-bottom: 0;
}
.submenu__item a {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: auto;
  font: normal var(--fw-regular-opp) 2rem/1.2 var(--_font-accent);
  color: var(--t-opp-bright);
  padding-left: 0;
}
.no-touch .submenu__item a:hover {
  color: var(--t-opp-medium);
  -webkit-transform: translateX(1rem);
  -moz-transform: translateX(1rem);
  -ms-transform: translateX(1rem);
  transform: translateX(1rem);
}
.submenu__item.active a {
  color: color-mix(in srgb, var(--additional), var(--nl-black) 15%);
  font-weight: 600;
}
@media only screen and (min-width: 1400px) {
  .submenu__item a {
    font-size: 2.5rem;
  }
}

.menu-promo {
  position: relative;
  padding: 0 3rem;
}
@media only screen and (min-width: 768px) {
  .menu-promo {
    padding: 0 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .menu-promo {
    height: 100%;
    text-align: right;
  }
}
@media only screen and (min-width: 1600px) {
  .menu-promo {
    padding: 0 7rem;
  }
}

.menu-promo__content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.1rem;
}
@media only screen and (min-width: 1200px) {
  .menu-promo__content {
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 3rem;
    width: 80%;
    padding: 0 4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .menu-promo__content {
    padding: 0 7rem;
  }
}

.menu-promo__caption {
  font-weight: var(--fw-regular-opp);
  color: var(--t-opp-medium);
}
@media only screen and (min-width: 1200px) {
  .menu-promo__caption {
    max-width: 380px;
  }
}
@media only screen and (min-width: 1600px) {
  .menu-promo__caption {
    max-width: 460px;
  }
}

.menu-promo__video {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .menu-promo__video {
    width: 100%;
    height: auto;
    padding: 1rem;
    -moz-border-radius: var(--_radius-m);
    border-radius: var(--_radius-m);
    background-color: var(--base-opp);
  }
}

.menu-video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -moz-border-radius: var(--_radius-m);
  border-radius: var(--_radius-m);
}
@media only screen and (min-width: 1200px) {
  .menu-video {
    -moz-border-radius: 1.8rem;
    border-radius: 1.8rem;
  }
}

.mxd-footer {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.mxd-footer__text-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mxd-footer__fullwidth-text {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  max-width: 1920px;
  padding: 0 3rem;
  color: var(--t-bright);
  z-index: -1;
  padding-top: 12.5rem;
  margin-bottom: 2rem;
}
.mxd-footer__fullwidth-text.personal {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .mxd-footer__fullwidth-text {
    padding: 0 6rem;
    padding-top: 10.5rem;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-footer__fullwidth-text.personal {
    margin-bottom: 5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-footer__fullwidth-text {
    padding: 0 9rem;
    padding-top: 11.1rem;
    margin-bottom: -1rem;
  }
}

.mxd-footer__svg-v2 {
  position: relative;
  display: block;
  width: 100%;
  fill: currentColor;
  z-index: -1;
}

.fullwidth-text__tl-trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.1rem;
  height: 0.1rem;
}

.mxd-footer__footer-blocks {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 1920px;
  padding: 0 3rem;
  margin-bottom: 10rem;
}
@media only screen and (min-width: 768px) {
  .mxd-footer__footer-blocks {
    padding: 0 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-footer__footer-blocks {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-footer__footer-blocks {
    padding: 0 9rem;
  }
}

.footer-blocks__column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 3rem;
}
@media only screen and (min-width: 1200px) {
  .footer-blocks__column {
    height: 650px;
  }
}
@media only screen and (min-width: 1600px) {
  .footer-blocks__column {
    height: 650px;
  }
}

.footer-blocks__card {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  padding: 3rem;
  background-color: var(--base-tint);
  -moz-border-radius: var(--_radius-m);
  border-radius: var(--_radius-m);
  border: 2px solid #11cee3;
}
.footer-blocks__card.fullheight-card {
  height: 100%;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer-blocks__card.fill-card {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .footer-blocks__card {
    padding: 5rem;
  }
}
.footer-blocks__block {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}

.footer-blocks__nav {
  position: relative;
}

.footer-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
}

.footer-nav__item {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
}

.footer-nav__link {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font: normal var(--fw-medium) 3rem/1.2 var(--_font-accent);
  color: var(--t-bright);
}
.footer-nav__link .btn-caption {
  height: 3.6rem;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .footer-nav__link {
    font-size: 4.4rem;
  }
  .footer-nav__link .btn-caption {
    height: 5.3rem;
  }
}

.footer-blocks__links {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
  gap: 1rem;
}
.footer-blocks__links p {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  gap: 0.2rem;
}
.no-touch .footer-blocks__links p a:hover {
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  .footer-blocks__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.footer-blocks__title {
  position: relative;
}

.footer-blocks__title-m {
  font: normal var(--fw-medium) 3rem/1.2 var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  .footer-blocks__title-m {
    font-size: 3.6rem;
  }
}

.footer-blocks__title-l {
  font: normal var(--fw-medium) 3rem/1.2 var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  .footer-blocks__title-l {
    font-size: 4.4rem;
  }
}

.footer-blocks__socials {
  position: relative;
}

.footer-socials {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-socials__item {
  display: block;
  margin-bottom: 0.3rem;
}
.footer-socials__item:last-of-type {
  margin-bottom: 0;
}

.footer-socials__link {
  font: normal var(--fw-regular) 2.2rem/1.6 var(--_font-accent);
  color: var(--t-bright);
}
.no-touch .footer-socials__link:hover {
  color: var(--t-medium);
}

.mfp-bg {
  background-color: rgba(var(--base-rgb), 0.7);
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

@-webkit-keyframes mxd-pulse {
  from {
    -webkit-transform: scale(0.94);
    transform: scale(0.94);
  }
  to {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
}

@-moz-keyframes mxd-pulse {
  from {
    -moz-transform: scale(0.94);
    transform: scale(0.94);
  }
  to {
    -moz-transform: scale(1.06);
    transform: scale(1.06);
  }
}

@keyframes mxd-pulse {
  from {
    -webkit-transform: scale(0.94);
    -moz-transform: scale(0.94);
    transform: scale(0.94);
  }
  to {
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    transform: scale(1.06);
  }
}

@keyframes mxd-pulse {
  from {
    -webkit-transform: scale(0.94);
    -moz-transform: scale(0.94);
    transform: scale(0.94);
  }
  to {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    transform: scale(1.02);
  }
}

@-webkit-keyframes mxd-move {
  from {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }
  to {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
}

@-moz-keyframes mxd-move {
  from {
    -moz-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }
  to {
    -moz-transform: translateY(1rem);
    transform: translateY(1rem);
  }
}

@keyframes mxd-move {
  from {
    -webkit-transform: translateY(-1rem);
    -moz-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }
  to {
    -webkit-transform: translateY(1rem);
    -moz-transform: translateY(1rem);
    transform: translateY(1rem);
  }
}

.hero-02-static__tl-trigger {
  position: absolute;
  top: 14%;
  right: 0;
  width: 1px;
  height: 1px;
}

.mxd-hero-07__tl-trigger {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
}

.hero-07-fade-out-scroll {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
}

.hero-07-slide-out-scroll {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
}

.mxd-hero-08__tl-trigger {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
}

.mxd-posts-area {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (min-width: 1200px) {
  .mxd-posts-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .mxd-posts-area.column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.mxd-posts-container {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .mxd-posts-container {
    width: -moz-calc(100% - 450px);
    width: calc(100% - 450px);
  }
}

.mxd-sidebar {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .mxd-sidebar {
    width: 450px;
  }
}

.mxd-post {
  position: relative;
  overflow: hidden;
}

.post-featured {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12.8rem;
  height: auto;
  padding: 3rem;
  margin-bottom: 6rem;
}
@media only screen and (min-width: 768px) {
  .post-featured {
    padding: 4rem;
    margin-bottom: 6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .post-featured {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0;
    height: 670px;
  }
}
@media only screen and (min-width: 1600px) {
  .post-featured {
    height: 760px;
  }
}

.post-featured__thumb {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.post-featured__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-featured__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.post-featured__categories {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
@media only screen and (min-width: 1200px) {
  .post-featured__categories {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.post-featured__content {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .post-featured__content {
    max-width: 500px;
  }
}
@media only screen and (min-width: 1200px) {
  .post-featured__content {
    overflow: hidden;
  }
}
@media only screen and (min-width: 1600px) {
  .post-featured__content {
    max-width: 600px;
  }
}

.post-featured__meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 0.4rem;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  color: var(--pt-t-light-bright);
  margin-bottom: 1.6rem;
}
.post-featured__meta span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font: normal var(--fw-regular) 1.8rem/1.6 var(--_font-accent);
}
.post-featured__meta span a {
  color: var(--pt-t-light-bright);
}
.post-featured__meta span svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}
.post-featured__meta span.meta-tag {
  font-weight: var(--fw-semibold);
}
@media only screen and (min-width: 1600px) {
  .post-featured__meta span {
    font-size: 2.2rem;
  }
}

.post-featured__title {
  margin-bottom: 2.3rem;
  color: var(--pt-t-light-bright);
}
.post-featured__title a {
  display: inline;
  color: var(--pt-t-light-bright);
  text-decoration: none;
  background:
    -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(0, 0, 0, 0)),
      to(rgba(0, 0, 0, 0))
    ),
    -webkit-gradient(
        linear,
        left top,
        right top,
        from(var(--pt-t-light-bright)),
        to(var(--pt-t-light-bright))
      );
  background:
    -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    -moz-linear-gradient(
        left,
        var(--pt-t-light-bright),
        var(--pt-t-light-bright)
      );
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    linear-gradient(
      to right,
      var(--pt-t-light-bright),
      var(--pt-t-light-bright)
    );
  -moz-background-size:
    100% 1px,
    0 1px;
  background-size:
    100% 1px,
    0 1px;
  background-position:
    100% 100%,
    0 100%;
  background-repeat: no-repeat;
  -webkit-transition:
    background-size 400ms,
    color 300ms;
  -moz-transition:
    background-size 400ms,
    color 300ms,
    -moz-background-size 400ms;
  transition:
    background-size 400ms,
    color 300ms;
  transition:
    background-size 400ms,
    color 300ms,
    -moz-background-size 400ms;
}
.no-touch .post-featured__title a:hover {
  color: var(--pt-t-light-bright);
  -moz-background-size:
    0 1px,
    100% 1px;
  background-size:
    0 1px,
    100% 1px;
}

.post-featured__excerpt p {
  color: var(--pt-t-light-bright);
}

.post-simple {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5rem;
  height: auto;
  padding: 6rem 0;
  border-top: 1px solid var(--st-muted);
}
.post-simple:last-of-type {
  border-bottom: 1px solid var(--st-muted);
}
@media only screen and (min-width: 768px) {
  .post-simple {
    gap: 3rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 6rem 0;
  }
}

.post-simple__thumb {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.post-simple__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.no-touch .post-simple__thumb:hover .mxd-preview-hover {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
@media only screen and (min-width: 768px) {
  .post-simple__thumb {
    -ms-flex-preferred-size: 260px;
    flex-basis: 260px;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .post-simple__thumb {
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
    height: 320px;
  }
}
@media only screen and (min-width: 1600px) {
  .post-simple__thumb {
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    height: 340px;
  }
}

.post-simple__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.post-simple__content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .post-simple__content {
    max-width: 665px;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1600px) {
  .post-simple__content {
    max-width: 765px;
  }
}

.post-simple__descr {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
}

.post-simple__meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 0.4rem;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  color: var(--t-medium);
}
.post-simple__meta span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font: normal var(--fw-regular) 1.8rem/1.6 var(--_font-accent);
}
.post-simple__meta span a {
  color: var(--t-medium);
}
.post-simple__meta span svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}
.post-simple__meta span.meta-tag {
  font-weight: var(--fw-semibold);
}
.no-touch .post-simple__meta span:hover a {
  color: var(--t-bright);
}

.post-simple__title a {
  display: inline;
  color: var(--t-bright);
  text-decoration: none;
  background:
    -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(0, 0, 0, 0)),
      to(rgba(0, 0, 0, 0))
    ),
    -webkit-gradient(
        linear,
        left top,
        right top,
        from(var(--t-bright)),
        to(var(--t-bright))
      );
  background:
    -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    -moz-linear-gradient(left, var(--t-bright), var(--t-bright));
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    linear-gradient(to right, var(--t-bright), var(--t-bright));
  -moz-background-size:
    100% 1px,
    0 1px;
  background-size:
    100% 1px,
    0 1px;
  background-position:
    100% 100%,
    0 100%;
  background-repeat: no-repeat;
  -webkit-transition:
    background-size 300ms,
    color 300ms;
  -moz-transition:
    background-size 300ms,
    color 300ms,
    -moz-background-size 300ms;
  transition:
    background-size 300ms,
    color 300ms;
  transition:
    background-size 300ms,
    color 300ms,
    -moz-background-size 300ms;
}
.no-touch .post-simple__title a:hover {
  color: var(--t-bright);
  -moz-background-size:
    0 1px,
    100% 1px;
  background-size:
    0 1px,
    100% 1px;
}

.mxd-sidebar {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}

.mxd-sidebar__widget {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem;
  border: 2px solid #11cee3;
}

.widget__title p {
  font: normal var(--fw-medium) 3rem/1.2 var(--_font-accent);
  color: var(--t-bright);
}
@media only screen and (min-width: 768px) {
  .widget__title p {
    font-size: 3.6rem;
  }
}

.widget__categories {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.3rem;
}

.categories__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.categories__link {
  font: normal var(--fw-regular) 2.2rem/1.6 var(--_font-accent);
  color: var(--t-bright);
}
.no-touch .categories__link:hover {
  color: var(--t-medium);
}

.widget__recent-posts {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}

.recent-post__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.recent-post__thumb {
  -ms-flex-preferred-size: 120px;
  flex-basis: 120px;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 120px;
  -moz-border-radius: var(--_radius-s);
  border-radius: var(--_radius-s);
  overflow: hidden;
}
.recent-post__thumb a {
  display: block;
}
.recent-post__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition:
    -webkit-filter var(--_animspeed-medium),
    -webkit-transform var(--_animspeed-medium) var(--_animbezier);
  transition:
    -webkit-filter var(--_animspeed-medium),
    -webkit-transform var(--_animspeed-medium) var(--_animbezier);
  -moz-transition:
    filter var(--_animspeed-medium),
    transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
  transition:
    filter var(--_animspeed-medium),
    transform var(--_animspeed-medium) var(--_animbezier);
  transition:
    filter var(--_animspeed-medium),
    transform var(--_animspeed-medium) var(--_animbezier),
    -webkit-filter var(--_animspeed-medium),
    -webkit-transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
}
.no-touch .recent-post__thumb:hover img {
  -webkit-filter: none;
  filter: none;
  transform: none;
}

.recent-post__content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}

.recent-post__title {
  font: normal var(--fw-semibold) 1.8rem/1.4 var(--_font-accent);
  color: var(--t-bright);
}
.recent-post__title a {
  display: inline;
  color: var(--t-bright);
  text-decoration: none;
  background:
    -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(0, 0, 0, 0)),
      to(rgba(0, 0, 0, 0))
    ),
    -webkit-gradient(
        linear,
        left top,
        right top,
        from(var(--t-bright)),
        to(var(--t-bright))
      );
  background:
    -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    -moz-linear-gradient(left, var(--t-bright), var(--t-bright));
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    linear-gradient(to right, var(--t-bright), var(--t-bright));
  -moz-background-size:
    100% 1px,
    0 1px;
  background-size:
    100% 1px,
    0 1px;
  background-position:
    100% 100%,
    0 100%;
  background-repeat: no-repeat;
  -webkit-transition:
    background-size 300ms,
    color 300ms;
  -moz-transition:
    background-size 300ms,
    color 300ms,
    -moz-background-size 300ms;
  transition:
    background-size 300ms,
    color 300ms;
  transition:
    background-size 300ms,
    color 300ms,
    -moz-background-size 300ms;
}
.no-touch .recent-post__title a:hover {
  color: var(--t-bright);
  -moz-background-size:
    0 1px,
    100% 1px;
  background-size:
    0 1px,
    100% 1px;
}

.recent-post__meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 0.4rem;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  color: var(--t-bright);
}
.recent-post__meta span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font: normal var(--fw-regular) 1.6rem/1.6 var(--_font-accent);
}
.recent-post__meta span a {
  color: var(--t-bright);
}
.recent-post__meta span svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}
.recent-post__meta span.meta-tag {
  font-weight: var(--fw-regular);
}
.no-touch .recent-post__meta span:hover a {
  color: var(--t-medium);
}

.widget__social-links-small {
  position: relative;
}

@media (hover) and (prefers-reduced-motion: no-preference) {
  .widget__social-links-small > .social-links-small__item {
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .widget__social-links-small:hover > .social-links-small__item:not(:hover) {
    opacity: 0.2;
  }
}

.social-links-small__item {
  position: relative;
  display: block;
  margin-top: -1px;
}
.social-links-small__item:first-of-type {
  margin-top: 0;
}

.social-links-small__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--st-bright);
}

.social-links-small__link {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.5rem 0;
  overflow: hidden;
}
.no-touch .social-links-small__link:hover .social-links-small__title {
  -webkit-transform: translateX(1rem);
  -moz-transform: translateX(1rem);
  -ms-transform: translateX(1rem);
  transform: translateX(1rem);
}
.no-touch .social-links-small__link:hover .social-links-small__icon i::before {
  -webkit-animation: 0.6s var(--_animbezier) 0s 1 both slideRightUp;
  -moz-animation: 0.6s var(--_animbezier) 0s 1 both slideRightUp;
  animation: 0.6s var(--_animbezier) 0s 1 both slideRightUp;
}

.social-links-small__title {
  position: relative;
  font: normal var(--fw-medium) 1.8rem/1.2 var(--_font-accent);
  color: var(--t-bright);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition:
    color var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium);
  transition:
    color var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium);
  -moz-transition:
    transform var(--_animspeed-medium),
    color var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium);
  transition:
    transform var(--_animspeed-medium),
    color var(--_animspeed-medium) var(--_animbezier);
  transition:
    transform var(--_animspeed-medium),
    color var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium),
    -moz-transform var(--_animspeed-medium);
}

.social-links-small__icon {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  -webkit-transform: translateX(0) rotate(0deg);
  -moz-transform: translateX(0) rotate(0deg);
  -ms-transform: translateX(0) rotate(0deg);
  transform: translateX(0) rotate(0deg);
  -webkit-transition: -webkit-transform var(--_animspeed-medium)
    var(--_animbezier);
  transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
  -moz-transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
  transition: transform var(--_animspeed-medium) var(--_animbezier);
  transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
}
.social-links-small__icon i {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  color: var(--t-bright);
  -webkit-transition: color var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: color var(--_animspeed-medium) var(--_animbezier);
  transition: color var(--_animspeed-medium) var(--_animbezier);
}

.widget-ad {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  overflow: hidden;
}

.mxd-footer__fullwidth-text {
  color: var(--base-opp);
}

.mxd-footer__svg-v2 text {
  transition: fill 0.3s ease;
}

.mxd-demo-swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 0;
}
.mxd-demo-swiper .swiper-slide-next,
.mxd-demo-swiper .swiper-slide-prev {
  -webkit-transform: scale(0.96);
  -moz-transform: scale(0.96);
  -ms-transform: scale(0.96);
  transform: scale(0.96);
  -webkit-transition: -webkit-transform var(--_animspeed-medium)
    var(--_animbezier);
  transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
  -moz-transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
  transition: transform var(--_animspeed-medium) var(--_animbezier);
  transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
}

.hover-reveal__item {
  position: relative;
}

.hover-reveal__content {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 300px;
  height: 300px;
  pointer-events: none;
  -moz-border-radius: var(--_radius-m);
  border-radius: var(--_radius-m);
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translate(-80%, -50%);
  -moz-transform: translate(-80%, -50%);
  -ms-transform: translate(-80%, -50%);
  transform: translate(-80%, -50%);
  -webkit-transition:
    opacity var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium);
  transition:
    opacity var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium);
  -moz-transition:
    transform var(--_animspeed-medium),
    opacity var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium);
  transition:
    transform var(--_animspeed-medium),
    opacity var(--_animspeed-medium) var(--_animbezier);
  transition:
    transform var(--_animspeed-medium),
    opacity var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium),
    -moz-transform var(--_animspeed-medium);
  z-index: 1;
}
@media only screen and (min-width: 1200px) {
  .hover-reveal__content {
    display: block;
  }
}

.hover-reveal__image {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1, 1.4);
  -moz-transform: scale(1, 1.4);
  -ms-transform: scale(1, 1.4);
  transform: scale(1, 1.4);
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition: -webkit-transform 0.5s var(--_animbezier);
  transition: -webkit-transform 0.5s var(--_animbezier);
  -moz-transition:
    transform 0.5s var(--_animbezier),
    -moz-transform 0.5s var(--_animbezier);
  transition: transform 0.5s var(--_animbezier);
  transition:
    transform 0.5s var(--_animbezier),
    -webkit-transform 0.5s var(--_animbezier),
    -moz-transform 0.5s var(--_animbezier);
}

.page-padding {
  width: 100%;
  padding: 0;
}
@media only screen and (min-width: 1200px) {
  .page-padding {
    padding: 6rem 0;
  }
}
@media only screen and (min-width: 1600px) {
  .page-padding {
    padding: 9rem 0;
  }
}

.mxd-pinned {
  display: block;
}
@media only screen and (min-width: 1200px) {
  .mxd-pinned {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
  }
}

.mxd-pinned__visual {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .mxd-pinned__visual {
    position: sticky;
    top: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100vh;
  }
}

.mxd-pinned__img-wrap {
  width: 30em;
  height: 40em;
  max-height: 100%;
  max-width: 100%;
  background-color: var(--base-tint);
  -moz-border-radius: var(--_radius-l);
  border-radius: var(--_radius-l);
}
@media only screen and (min-width: 1200px) {
  .mxd-pinned__img-wrap {
    width: 100%;
    height: 100%;
  }
}

.mxd-pinned__img-list {
  position: relative;
  width: 100%;
  height: 100%;
}

.mxd-pinned__img-item {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: opacity var(--_animspeed-medium);
  -moz-transition: opacity var(--_animspeed-medium);
  transition: opacity var(--_animspeed-medium);
}

.mxd-pinned__img-item.is-active {
  opacity: 1;
}

.mxd-pinned__img {
  width: auto;
  height: 35rem;
  -o-object-fit: cover;
  object-fit: cover;
  -moz-border-radius: 2em;
  border-radius: 2em;
}
@media only screen and (min-width: 1600px) {
  .mxd-pinned__img {
    height: 40rem;
  }
}

.mxd-pinned__content {
  padding: 0;
}
@media only screen and (min-width: 1200px) {
  .mxd-pinned__content {
    padding: 6rem 0;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-pinned__content {
    padding: 9rem 0;
  }
}

.mxd-pinned__text-wrap {
  padding: 0;
}
@media only screen and (min-width: 1200px) {
  .mxd-pinned__text-wrap {
    padding: 0 9rem 0 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-pinned__text-wrap {
    padding: 0 9rem 0 6rem;
  }
}

.mxd-pinned__text-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7rem;
}
@media only screen and (min-width: 768px) {
  .mxd-pinned__text-list {
    gap: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-pinned__text-list {
    gap: 0;
  }
}

.mxd-pinned__text-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media only screen and (min-width: 1200px) {
  .mxd-pinned__text-item {
    height: -moz-calc(100vh - 12rem);
    height: calc(100vh - 12rem);
    max-width: 640px;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0.2;
    -webkit-transition: opacity var(--_animspeed-medium);
    -moz-transition: opacity var(--_animspeed-medium);
    transition: opacity var(--_animspeed-medium);
  }
  .mxd-pinned__text-item.is-active {
    opacity: 1;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-pinned__text-item {
    height: -moz-calc(100vh - 18rem);
    height: calc(100vh - 18rem);
  }
}

.mxd-pinned__img-mobile {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 360px;
  background-color: var(--base-tint);
  -moz-border-radius: var(--_radius-l);
  border-radius: var(--_radius-l);
}
.mxd-pinned__img-mobile img {
  display: block;
  width: auto;
  height: 22rem;
  -o-object-fit: cover;
  object-fit: cover;
  -moz-border-radius: 2em;
  border-radius: 2em;
}
@media only screen and (min-width: 768px) {
  .mxd-pinned__img-mobile {
    height: 600px;
  }
  .mxd-pinned__img-mobile img {
    height: 50rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-pinned__img-mobile {
    display: none;
  }
}

.mxd-pinned__title {
  margin-bottom: 3.4rem;
}
@media only screen and (min-width: 1600px) {
  .mxd-pinned__title {
    margin-bottom: 4rem;
  }
}

.mxd-pinned__tags {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.2rem;
}
@media only screen and (min-width: 1600px) {
  .mxd-pinned__tags {
    gap: 1.4rem;
    margin-bottom: 3.8rem;
  }
}

.mxd-pinned-universal {
  position: relative;
}

.mxd-pinned-universal__static-inner {
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .mxd-pinned-universal__static-inner {
    position: sticky;
    top: 0;
    padding-top: 6rem;
    text-align: left;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-pinned-universal__static-inner {
    padding-top: 9rem;
  }
}

@media only screen and (min-width: 1200px) {
  .mxd-pinned-universal__scroll {
    padding-top: 6rem;
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-pinned-universal__scroll {
    padding-top: 9rem;
  }
}

.mxd-pinned-universal__scroll-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6.5rem;
}
@media only screen and (min-width: 768px) {
  .mxd-pinned-universal__scroll-inner {
    gap: 7.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-pinned-universal__scroll-inner {
    gap: 9.3rem;
  }
}

.mxd-stats-simple {
  position: relative;
}

@media only screen and (min-width: 1200px) and (hover) and (prefers-reduced-motion: no-preference) {
  .mxd-stats-simple > .mxd-stats-simple__item {
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .mxd-stats-simple:hover > .mxd-stats-simple__item:not(:hover) {
    opacity: 0.2;
  }
}

.mxd-stats-simple__item {
  position: relative;
  padding-top: 3rem;
}
.mxd-stats-simple__item:first-of-type {
  padding-top: 0;
}
.mxd-stats-simple__item:first-of-type .mxd-stats-simple__inner {
  padding-top: 6rem;
  border-top: 1px solid var(--st-bright);
}
.mxd-stats-simple__item .mxd-stats-simple__inner {
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--st-bright);
}
@media only screen and (min-width: 992px) {
  .mxd-stats-simple__item {
    padding-top: 0;
  }
  .mxd-stats-simple__item .mxd-stats-simple__inner {
    padding-bottom: 0;
    border-bottom: none;
  }
  .mxd-stats-simple__item:first-of-type .mxd-stats-simple__inner {
    padding-top: 0;
    border-top: none;
  }
}

.mxd-stats-simple__inner {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .mxd-stats-simple__inner {
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 320px;
    padding: 0 3rem;
    border-bottom: none;
    border-left: 1px solid var(--st-bright);
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-stats-simple__inner {
    height: 400px;
  }
}

.mxd-stats-simple__counter {
  margin-bottom: 2.8rem;
}
@media only screen and (min-width: 992px) {
  .mxd-stats-simple__counter {
    margin-bottom: 0;
  }
}

.mxd-stats-simple__descr {
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .mxd-stats-simple__descr {
    text-align: left;
  }
}

.mxd-res-list {
  position: relative;
}
@media only screen and (min-width: 1200px) and (hover) and (prefers-reduced-motion: no-preference) {
  .mxd-res-list > .mxd-res-list__item {
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .mxd-res-list:hover > .mxd-res-list__item:not(:hover) {
    opacity: 0.2;
  }
}

.mxd-res-list__item {
  position: relative;
  display: block;
  margin-top: -2px;
}
.mxd-res-list__item:first-of-type {
  margin-top: 0;
}

.mxd-res-list__divider {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--st-bright);
}

.mxd-res-list__content {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 3.6rem 0 3.5rem 0;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .mxd-res-list__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 6rem 0 7rem 0;
  }
}

.mxd-res-list__data {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
}
@media only screen and (min-width: 1200px) {
  .mxd-res-list__data {
    gap: 2.8rem;
  }
}

.mxd-res-list__source {
  font-size: 1.6rem;
  margin-top: 0.2rem;
}
@media only screen and (min-width: 1600px) {
  .mxd-res-list__source {
    font-size: 1.8rem;
  }
}

.mxd-res-list__descr {
  max-width: 560px;
}

.mxd-res-list__year {
  margin-bottom: 1.1rem;
}
.mxd-res-list__year p {
  font-weight: var(--fw-medium);
  color: var(--t-bright);
}

.marquee {
  max-width: 100%;
  overflow: hidden;
}

.marquee--gsap .marquee__top,
.marquee--gsap .marquee__bottom {
  translate: -moz-calc(-100% + 100vw) !important;
  translate: calc(-100% + 100vw) !important;
}

.marquee-right--gsap .marquee__toright,
.marquee-left--gsap .marquee__toleft {
  translate: -moz-calc(-100% + 100vw) !important;
  translate: calc(-100% + 100vw) !important;
}

.marquee__top,
.marquee__bottom,
.marquee__toleft,
.marquee__toright {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

@-webkit-keyframes toLeft {
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@-moz-keyframes toLeft {
  to {
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes toLeft {
  to {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-webkit-keyframes toRight {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes toRight {
  to {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes toRight {
  to {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes animateZ {
  to {
    -webkit-transform: translateZ(1px);
    transform: translateZ(1px);
  }
}
@-moz-keyframes animateZ {
  to {
    -moz-transform: translateZ(1px);
    transform: translateZ(1px);
  }
}
@keyframes animateZ {
  to {
    -webkit-transform: translateZ(1px);
    -moz-transform: translateZ(1px);
    transform: translateZ(1px);
  }
}

.stack-wrapper {
  position: relative;
  width: 100%;
}

.stack-offset {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 10.6rem;
  background-color: transparent;
}
@media only screen and (min-width: 768px) {
  .stack-offset {
    height: 13.6rem;
  }
}

.stack-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  padding-bottom: 3rem;
}
@media only screen and (min-width: 1600px) {
  .stack-item {
    padding-bottom: 6rem;
  }
}

.testimonials-slider {
  position: relative;
  height: auto;
  padding: 0 3rem;
}
@media only screen and (min-width: 768px) {
  .testimonials-slider {
    padding: 0 6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonials-slider {
    padding: 0 1.5rem;
  }
}

.swiper-testimonials {
  position: relative;
  height: 100%;
  padding-bottom: 7rem;
}

.swiper-slide {
  width: 100%;
  -webkit-filter: blur(4px);
  filter: blur(4px);
  -webkit-transition: -webkit-filter var(--_animspeed-slow) var(--_animbezier);
  transition: -webkit-filter var(--_animspeed-slow) var(--_animbezier);
  -moz-transition: filter var(--_animspeed-slow) var(--_animbezier);
  transition: filter var(--_animspeed-slow) var(--_animbezier);
  transition:
    filter var(--_animspeed-slow) var(--_animbezier),
    -webkit-filter var(--_animspeed-slow) var(--_animbezier);
}
.swiper-slide.swiper-slide-active {
  -webkit-filter: blur(0);
  filter: blur(0);
}
@media only screen and (min-width: 768px) {
  .swiper-slide {
    width: auto;
  }
}

.testimonials-slider-2 {
  position: relative;
  height: auto;
}

.swiper-testimonials-2 {
  position: relative;
  height: 100%;
  padding-bottom: 7rem;
}

.mxd-accordion {
  position: relative;
}
@media only screen and (min-width: 1200px) and (hover) and (prefers-reduced-motion: no-preference) {
  .mxd-accordion > .mxd-accordion__item {
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .mxd-accordion:hover > .mxd-accordion__item:not(:hover) {
    opacity: 0.2;
  }
}

.mxd-accordion__item {
  position: relative;
  cursor: pointer;
  margin-top: -2px;
}
.mxd-accordion__item:first-of-type {
  margin-top: 0;
}

.mxd-accordion__divider {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--st-bright);
}

.mxd-accordion__content {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0 3.6rem 0;
  overflow: hidden;
  display: none;
}
@media only screen and (min-width: 1200px) {
  .mxd-accordion__content {
    padding: 0 0 3.4rem 0;
  }
}

.mxd-accordion__title {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3rem 0;
}
@media only screen and (min-width: 1200px) {
  .mxd-accordion__title {
    padding: 3rem 0 3.4rem 0;
  }
}

.mxd-accordion__arrow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--t-bright);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  will-change: transform;
  -webkit-transition: -webkit-transform var(--_animspeed-medium)
    var(--_animbezier);
  transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
  -moz-transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
  transition: transform var(--_animspeed-medium) var(--_animbezier);
  transition:
    transform var(--_animspeed-medium) var(--_animbezier),
    -webkit-transform var(--_animspeed-medium) var(--_animbezier),
    -moz-transform var(--_animspeed-medium) var(--_animbezier);
}
@media only screen and (min-width: 1200px) {
  .mxd-accordion__arrow {
    font-size: 3rem;
  }
}

.accordion-rotate {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.mxd-project__block {
  position: relative;
  margin-top: 12.3rem;
  margin-bottom: 13.1rem;
}
.mxd-project__block.no-margin {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .mxd-project__block {
    margin-top: 13.1rem;
    margin-bottom: 15.1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-project__block {
    margin-top: 14.3rem;
    margin-bottom: 15.1rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-project__block {
    margin-top: 18.3rem;
    margin-bottom: 19rem;
  }
}

.mxd-project__subtitle {
  position: relative;
}

.mxd-project__paragraph {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .mxd-project__paragraph {
    margin-top: 1.3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mxd-project__paragraph {
    margin-top: 0.4rem;
    gap: 3rem;
  }
  .mxd-project__paragraph.medium-text {
    margin-top: 0.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-project__paragraph {
    max-width: 855px;
  }
  .mxd-project__paragraph.medium-text {
    margin-top: 0.6rem;
  }
}

html:not([color-scheme="dark"]) .mxd-logo__image {
  color: #fff !important;
}

html[color-scheme="dark"] .mxd-logo__image {
  color: #000 !important;
}

.mxd-logo__image {
  transition: color 0.3s ease;
}

.mxd-logo__image {
  width: 50px;
  height: 50px;
}

.footer-github-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-github-list li {
  margin-bottom: 10px;
}

.footer-github-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-github-list a:hover {
  opacity: 1;
  transform: translateX(6px);
}

.mxd-menu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mxd-menu__data {
  margin-top: auto;
}

.awSkillDeck {
  position: relative;
  overflow: hidden;
}
.awSkillDeck__title {
  margin: 12px 0 55px;
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.awSkillCard {
  position: relative;
  height: 100%;
  border-radius: 20px;
  border: 2px solid #11cee3;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 16px 16px 14px;
  overflow: hidden;
  text-align: left;
  opacity: 1;
  transform: none;
}
.awSkillCard::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
    420px 220px at 20% 0%,
    rgba(17, 206, 227, 0.18),
    transparent 60%
  );
  opacity: 0;
  transition: 0.25s ease;
  pointer-events: none;
}

.awSkillCard:hover::after {
  opacity: 1;
}

.awSkillCard__top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.awSkillCard__name {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.2px;
}
.awSkillCard__hint {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.82;
}

.awGauge {
  position: relative;
  margin-top: 14px;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
.awGauge__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}
.awGauge__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 10;
}
.awGauge__bar {
  fill: none;
  stroke: #11cee3;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 0 999;
  filter: drop-shadow(0 0 10px rgba(17, 206, 227, 0.35));
}
.awGauge__glow {
  fill: none;
  stroke: rgba(17, 206, 227, 0.18);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 0 999;
  filter: blur(2px);
}
.awGauge__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.awGauge__val {
  font-weight: 1000;
  font-size: 28px;
  letter-spacing: -0.02em;
  text-shadow: 0 0 18px rgba(17, 206, 227, 0.22);
}
.awGauge__label {
  margin-top: 2px;
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.awSkillCard__chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.awChip {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 2px solid #11cee3;
  background: rgba(0, 0, 0, 0.22);
  font-size: 12px;
  opacity: 0.92;
}

.awSkillDeck.is-ready .awSkillCard {
  opacity: 0;
  transform: translateY(10px);
}
.awSkillDeck.is-active .row > [class*="col-"] .awSkillCard {
  animation: awCardIn 0.7s ease forwards;
}
.awSkillDeck.is-active .row > [class*="col-"]:nth-child(1) .awSkillCard {
  animation-delay: 0.05s;
}
.awSkillDeck.is-active .row > [class*="col-"]:nth-child(2) .awSkillCard {
  animation-delay: 0.1s;
}
.awSkillDeck.is-active .row > [class*="col-"]:nth-child(3) .awSkillCard {
  animation-delay: 0.15s;
}
.awSkillDeck.is-active .row > [class*="col-"]:nth-child(4) .awSkillCard {
  animation-delay: 0.2s;
}
.awSkillDeck.is-active .row > [class*="col-"]:nth-child(5) .awSkillCard {
  animation-delay: 0.25s;
}
.awSkillDeck.is-active .row > [class*="col-"]:nth-child(6) .awSkillCard {
  animation-delay: 0.3s;
}
.awSkillDeck.is-active .row > [class*="col-"]:nth-child(7) .awSkillCard {
  animation-delay: 0.35s;
}

@keyframes awCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  #skills.awSkillDeck {
    margin-top: 28px;
  }
  .awSkillCard {
    text-align: center;
  }
  .awSkillCard__top {
    justify-content: center;
  }
  .awSkillCard__chips {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .awSkillCard {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .awSkillDeck.is-ready .awSkillCard {
    opacity: 1 !important;
    transform: none !important;
  }
}

.mxd-engine-viewer-section {
  padding-top: 2.5rem;
  padding-bottom: 6rem;
}

.engine-viewer__wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.4rem;
  align-items: stretch;
  padding: 2.2rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid #11cee3;
  backdrop-filter: blur(10px);
}

.engine-ui {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 1.8rem;
  padding: 1.8rem;
  border-radius: 1.6rem;
  background: rgba(0, 0, 0, 0.28);
}

.engine-ui__title {
  text-align: center;
}

.engine-ui__title h3 {
  margin: 0 0 0.55rem 0;
}

.engine-ui__title p {
  margin: 0 0 1.2rem 0;
}

.engine-ui__description {
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.engine-ui__toggle {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  user-select: none;
  margin-top: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
}

.engine-ui__toggle input {
  appearance: none;
  -webkit-appearance: none;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  cursor: pointer;
  outline: none;
  transition:
    transform 0.18s ease,
    background 0.25s ease,
    border-color 0.25s ease;
  flex: 0 0 auto;
}

.engine-ui__toggle input::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transition:
    left 0.25s ease,
    transform 0.25s ease;
}

.engine-ui__toggle input:checked {
  border-color: #11cee3;
}

.engine-ui__toggle input:checked::after {
  left: 24px;
}

.engine-ui__toggle input:active {
  transform: scale(0.98);
}

.engine-ui__toggle span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 14px;
  line-height: 1.2;
}

.engine-ui__btns {
  margin-top: auto;
  padding-top: 1.4rem;
  display: flex;
  justify-content: center;
}

.engine-stage {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 1.6rem;
  border: 2px solid #11cee3;
  background:
    radial-gradient(
      1200px 600px at 30% 20%,
      rgba(255, 255, 255, 0.07),
      transparent 60%
    ),
    rgba(0, 0, 0, 0.25);
  cursor: grab;
}

.engine-stage:active {
  cursor: grabbing;
}

.engine-stage__canvas {
  position: absolute;
  inset: 0;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

.engine-stage__hint {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.engine-stage__hint i {
  margin-right: 0.45rem;
}

.engine-reset-mobile {
  display: none;
  justify-content: center;
  grid-column: 1 / -1;
}

@media (max-width: 1200px) {
  .engine-viewer__wrap {
    grid-template-columns: 320px 1fr;
  }
}

@media (max-width: 992px) {
  .mxd-engine-viewer-section {
    margin-top: 3rem;
  }

  .engine-viewer__wrap {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 1.4rem;
  }

  .engine-stage {
    min-height: 520px;
  }

  .engine-reset-desktop {
    display: none;
  }

  .engine-reset-mobile {
    display: flex;
    margin-top: 1.2rem;
  }

  .engine-reset-mobile .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .mxd-engine-viewer-section {
    margin-top: 14rem;
  }

  .engine-viewer__wrap {
    gap: 1.2rem;
    padding: 1.1rem;
    border-radius: 1.6rem;
  }

  .engine-ui {
    padding: 1.2rem;
    border-radius: 1.4rem;
  }

  .engine-ui__btns {
    padding-top: 1.1rem;
  }

  .engine-ui__description {
    padding: 0.9rem;
    font-size: 12.5px;
  }

  .engine-ui__toggle {
    padding: 0.8rem 0.9rem;
  }

  .engine-stage {
    min-height: 430px;
    border-radius: 1.4rem;
  }

  .engine-stage__hint {
    left: 0.8rem;
    bottom: 0.8rem;
    gap: 0.8rem;
    padding: 0.6rem 0.85rem;
  }
}

.engine-timeline-cta .btn {
  border: 2px solid #11cee3;
  color: #ffffff;
  background: transparent;
  transition: all 0.3s ease;
}

.engine-timeline-cta .btn i {
  color: #ffffff;
}

.engine-timeline-cta .btn:hover {
  background: #11cee3;
  color: #0f0f0f;
  box-shadow: 0 0 20px rgba(17, 206, 227, 0.4);
}

.engine-timeline-cta .btn:hover i {
  color: #0f0f0f;
}

.footer-social-with-icon {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-social-icon {
  width: 25px;
  height: 25px;
  fill: currentColor;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.footer-social-with-icon:hover .footer-social-icon {
  transform: translateY(-2px);
  opacity: 0.8;
}

.widget__image {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.widget__svg {
  width: 350px;
  height: 350px;
  transition: all 0.3s ease;
}

.social-with-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social-icon-small {
  width: 25px;
  height: 25px;
  fill: #11cee3;
  transition: transform 0.3s ease;
}

.social-with-icon:hover .social-icon-small {
  transform: scale(1.1);
}

.mxd-section-inner-headline {
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
}

@supports (height: 100svh) {
  .mxd-section-inner-headline {
    min-height: 100svh;
  }
}

.mxd-section-inner-headline #matrix {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.mxd-section-inner-headline .mw-toolbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.mxd-section-inner-headline .mw-toggle {
  pointer-events: auto;

  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 2px solid #11cee3;

  background: rgba(0, 0, 0, 0.55);
  color: #11cee3;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 0 18px rgba(17, 206, 227, 0.35),
    0 12px 26px rgba(0, 0, 0, 0.6);

  cursor: pointer;
  transition:
    transform 0.22s ease,
    color 0.18s ease,
    box-shadow 0.22s ease;
}

.mxd-section-inner-headline .mw-toggle:hover {
  transform: translateX(-50%) scale(1.08);
  box-shadow:
    0 0 26px rgba(17, 206, 227, 0.55),
    0 12px 30px rgba(0, 0, 0, 0.65);
}

.mxd-section-inner-headline .mw-toggle[aria-expanded="true"] {
  color: #fff;
}

.mxd-section-inner-headline .mw-toggle:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(17, 206, 227, 0.35),
    0 0 26px rgba(17, 206, 227, 0.55),
    0 12px 30px rgba(0, 0, 0, 0.65);
}

.mxd-section-inner-headline .mw-icon {
  position: absolute;
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.mxd-section-inner-headline .mw-icon-open {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.mxd-section-inner-headline .mw-icon-close {
  opacity: 0;
  transform: scale(0.82) rotate(-90deg);
}

.mxd-section-inner-headline .mw-toggle[aria-expanded="true"] .mw-icon-open {
  opacity: 0;
  transform: scale(0.82) rotate(90deg);
}
.mxd-section-inner-headline .mw-toggle[aria-expanded="true"] .mw-icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.mxd-section-inner-headline .mw-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.mxd-section-inner-headline .mw-panel {
  pointer-events: auto;

  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);

  width: min(1120px, 96%);
  padding: 14px;

  border-radius: 20px;
  border: 2px solid #11cee3;
  background: rgba(0, 0, 0, 0.55);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 0 34px rgba(17, 206, 227, 0.22),
    0 20px 50px rgba(0, 0, 0, 0.7);

  max-height: 55vh;
  overflow: auto;

  z-index: 90;

  transform-origin: 50% 100%;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.mxd-section-inner-headline .mw-panel.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px) scale(0.985);
  visibility: hidden;
  pointer-events: none;
}

.mxd-section-inner-headline .mw-mini {
  display: grid;
  grid-template-columns: repeat(9, minmax(92px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.mxd-section-inner-headline .mw-chip {
  border-radius: 14px;
  padding: 10px 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}

@media (hover: hover) {
  .mxd-section-inner-headline .mw-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  }
}

.mxd-section-inner-headline .mw-chip__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.mxd-section-inner-headline .mw-chip__top i {
  font-size: 16px;
  line-height: 1;
  color: #11cee3;
}

.mxd-section-inner-headline .mw-chip__val {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #11cee3;
  font-variant-numeric: tabular-nums;
}

.mxd-section-inner-headline .mw-panel input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(17, 206, 227, 0.28);
  outline: none;
}

.mxd-section-inner-headline
  .mw-panel
  input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #11cee3;
  box-shadow: 0 0 10px rgba(17, 206, 227, 0.55);
  border: none;
  cursor: pointer;
}

.mxd-section-inner-headline .mw-panel input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #11cee3;
  box-shadow: 0 0 10px rgba(17, 206, 227, 0.55);
  border: none;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .mxd-section-inner-headline .mw-mini {
    grid-template-columns: repeat(5, minmax(92px, 1fr));
  }
}

@media (max-width: 720px) {
  .mxd-section-inner-headline {
    padding-bottom: 190px;
  }
  .mxd-section-inner-headline .mw-mini {
    grid-template-columns: repeat(3, minmax(92px, 1fr));
  }
  .mxd-section-inner-headline .mw-panel {
    width: 94%;
  }
}

@media (max-width: 420px) {
  .mxd-section-inner-headline {
    padding-bottom: 210px;
  }
  .mxd-section-inner-headline .mw-mini {
    grid-template-columns: repeat(2, minmax(92px, 1fr));
  }
  .mxd-section-inner-headline .mw-panel {
    bottom: 66px;
  }
  .mxd-section-inner-headline .mw-toggle {
    width: 44px;
    height: 44px;
  }
}

.about-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  font-size: 150px;
}

.snap-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.snap-thumb i {
  font-size: 50px;
  opacity: 0.9;
}


/* ======================================================================
   HXG — Horizontal Experience Gallery (isolated, premium)
   - one-at-a-time snap slider
   - wheel -> horizontal
   - drag / swipe support
   - progress bar
   - dynamic typed description (fixed height to max content, no layout shift)
   - mobile: text below image
====================================================================== */

.hxg-section {
  position: relative;
}

.hxg-block {
  position: relative;
}

.hxg-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 575px) {
  .hxg-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hxg-hint {
  opacity: 0.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hxg-progress {
  width: 220px;
  height: 4px;
  background: #424242;
  border-radius: 999px;
  overflow: hidden;
}

@media (max-width: 575px) {
  .hxg-progress {
    width: 100%;
  }
}

.hxg-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: #11cee3;
  border-radius: 999px;
  transform-origin: left center;
  will-change: width;
}

.hxg-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  outline: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  contain: layout paint;
}

.hxg-rail {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  padding: 0;
  margin: 0;

  scrollbar-width: none;
  overscroll-behavior-x: contain;
  scroll-snap-stop: always;
  touch-action: pan-y;

  will-change: scroll-position;
  user-select: none;
  -webkit-user-select: none;
}

.hxg-rail::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.hxg-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: clamp(320px, 52vh, 560px);
  scroll-snap-align: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  transform: translateZ(0);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  contain: paint;
  -webkit-tap-highlight-color: transparent;
}

.hxg-card__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
}

.hxg-media {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
  will-change: transform;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.hxg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(255, 255, 255, 0.10), transparent 45%),
    linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.05));
  pointer-events: none;
}

.hxg-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.hxg-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hxg-caption {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hxg-rail.hxg-dragging {
  cursor: grabbing;
}

.hxg-wrap [data-hxg] {
  cursor: grab;
}

/* Description: fixed height is set by JS to max needed, so no section shifting */
.hxg-desc {
  margin-top: 3rem;
  max-width: 46ch;
  overflow: hidden;
  position: relative;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  will-change: opacity, transform, filter;
}

/* enter state while changing */
.hxg-desc.is-enter {
  opacity: 0;
  transform: translateY(6px);
  filter: blur(6px);
}

/* caret */
.hxg-desc .hxg-caret {
  display: inline-block;
  width: 0.65ch;
  margin-left: 0.18ch;
  opacity: 0.95;
  transform: translateY(1px);
  animation: hxgCaret 0.9s steps(1) infinite;
}

@keyframes hxgCaret {
  50% {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .hxg-card {
    height: auto;
    background: rgba(255, 255, 255, 0.04);
  }

  .hxg-media {
    position: relative;
    height: 240px;
    transform: none !important;
    filter: none;
  }

  .hxg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08));
  }

  .hxg-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 14px 14px 16px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hxg-caption {
    letter-spacing: 0.08em;
  }

  .hxg-rail {
    scroll-snap-type: x mandatory;
    touch-action: pan-y;
  }

  .hxg-card__link {
    touch-action: pan-y;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hxg-rail {
    scroll-behavior: auto;
  }

  .hxg-card,
  .hxg-media {
    transition: none !important;
  }

  .hxg-desc {
    filter: none !important;
    transform: none !important;
  }

  .hxg-desc .hxg-caret {
    animation: none;
  }
}

@media (max-width: 767px) {
  .hxg-block .mxd-project__subtitle {
    padding-bottom: 18px;
  }
}

.awSkillsPanel {
  position: relative;
}

.awSkillsPanel__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
  gap: 3.2rem;
  align-items: start;
}

.awSkillsPanel__intro {
  position: sticky;
  top: 120px;
}

.awSkillsPanel__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

.awSkillsPanel__title {
  margin: 0 0 1.4rem 0;
  font-size: clamp(2.8rem, 4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.awSkillsPanel__text {
  max-width: 34rem;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.66);
}

.awSkillsPanel__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.awSkillRow {
  position: relative;
  padding: 2rem 2rem 1.8rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  backdrop-filter: blur(8px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.awSkillRow:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.awSkillRow__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.6rem;
  margin-bottom: 1.4rem;
}

.awSkillRow__name {
  margin: 0 0 0.55rem 0;
  font-size: 1.9rem;
  line-height: 1.1;
  color: #fff;
}

.awSkillRow__desc {
  margin: 0;
  max-width: 52rem;
  font-size: 1.45rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
}

.awSkillRow__value {
  flex-shrink: 0;
  font-size: 1.45rem;
  font-weight: 600;
  color: rgba(255,255,255,0.84);
  letter-spacing: 0.04em;
}

.awSkillRow__bar {
  position: relative;
  width: 100%;
  height: 0.55rem;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.awSkillRow__fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #11cee3, #058391);
  box-shadow: 0 0 16px rgba(17,206,227,0.45);
  transition: width 1.2s cubic-bezier(.22,.61,.36,1);
}


.awSkillRow__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.awSkillRow__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 3.1rem;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.68);
}

@media (max-width: 991.98px) {
  .awSkillsPanel__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .awSkillsPanel__intro {
    position: relative;
    top: auto;
  }

  .awSkillsPanel__text {
    max-width: 100%;
  }

  .awSkillRow__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.mxd-section-inner-headline {
  position: relative;
  overflow: hidden;
}

/* GLB MODEL */

.spaceship-viewer-wrap {
  position: absolute;
  inset: 0;
}

#viewer {
  position: absolute;
  inset: 0;
}

#viewer > canvas {
  display: block;
}

/* PAUSE BUTTON */

.spaceship-viewer-controls {
  position: absolute;
  left: 50%;
  bottom: 74px;
  transform: translateX(-50%);
  z-index: 3;
}

.spaceship-toggle-btn {
  appearance: none;
  border: 1px solid rgba(17, 206, 227, 0.45);
  background: rgba(8, 18, 26, 0.34);
  color: #11cee3;
  width: 35px;
  height: 35px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 0 0 1px rgba(17, 206, 227, 0.08) inset,
    0 0 18px rgba(17, 206, 227, 0.16),
    0 0 36px rgba(17, 206, 227, 0.08);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.spaceship-toggle-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(8, 22, 30, 0.52);
  border-color: rgba(17, 206, 227, 0.75);

  box-shadow:
    0 0 0 1px rgba(17, 206, 227, 0.18) inset,
    0 0 24px rgba(17, 206, 227, 0.24),
    0 0 48px rgba(17, 206, 227, 0.14);
}

.spaceship-toggle-btn__icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* HELP BAR */

.spaceship-viewer-helpbar {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 10px 16px;
  border-radius: 999px;

  background: rgba(8, 18, 26, 0.42);
  border: 1px solid rgba(17, 206, 227, 0.18);

  backdrop-filter: blur(12px);

  box-shadow:
    0 0 0 1px rgba(17, 206, 227, 0.04) inset,
    0 10px 30px rgba(0, 0, 0, 0.22);

  pointer-events: none;
  user-select: none;
}

.help-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
}

.help-chip__icon {
  width: 15px;
  height: 15px;
  fill: #11cee3;
}

.help-separator {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.18);
}

/* MOBILE */

@media (max-width:768px) {

  .spaceship-viewer-controls {
    bottom: 70px;
  }

  .spaceship-viewer-helpbar {
    bottom: 16px;
    padding: 8px 12px;
    gap: 8px;
    overflow-x: auto;
  }

  .help-chip {
    font-size: 11px;
  }

}

