@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
  margin: 0;
}

blockquote, q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
}

:root {
  --app-height: 100%;
  --container: 1320px;
  --container-wide: 1484px;
  --container-padding: 20px;
  --margin: 8px;
  --color-black: #000000;
  --color-black-rgb: 0, 0, 0;
  --color-white: #FFFFFF;
  --color-white-rgb: 255, 255, 255;
  --color-white-frost: #F3F8FB;
  --color-blue: #0000F0;
  --color-blue-rgb: 0, 0, 240;
  --fast-transition: .2s;
  --transition: .4s;
  --slow-transition: .6s;
  --slowest-transition: 1s;
  --primary-font: "Poppins", "sans-serif";
  --z-index-navigation: 100;
  --z-index-navigation-languages: 99;
}
@media (min-width: 768px) {
  :root {
    --container-padding: 60px;
  }
}

.container {
  position: relative;
  max-width: calc(var(--container) + 2 * var(--container-padding));
  margin: 0 auto;
  padding-inline: var(--container-padding);
  width: 100%;
}
.container--wide {
  max-width: calc(var(--container-wide) + 2 * var(--container-padding));
}

@font-face {
  font-family: "Poppins";
  src: url(../../assets/fonts/Poppins-Light.woff2);
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url(../../assets/fonts/Poppins-Regular.woff2);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url(../../assets/fonts/Poppins-Medium.woff2);
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url(../../assets/fonts/Poppins-SemiBold.woff2);
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url(../../assets/fonts/Poppins-Bold.woff2);
  font-weight: 700;
  font-style: normal;
}
svg,
svg > * {
  font-family: var(--primary-font);
}

.section-spacing {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .section-spacing {
    margin-bottom: 100px;
  }
}
@media (min-width: 1280px) {
  .section-spacing {
    margin-bottom: 150px;
  }
}

.bounce {
  animation-name: bounce;
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
}

@keyframes bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-8px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-4px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  position: relative;
  font-family: var(--primary-font);
}

html.stop-scroll {
  overflow: hidden;
  height: calc(var(--app-height) - 1px);
}

body {
  overflow-x: hidden;
}

.slick-dots li {
  list-style: none;
}

input,
textarea,
select {
  font-family: var(--primary-font);
}

ul {
  margin: 0px;
  padding-left: 0px;
  list-style: square;
  list-style-position: inside;
}
ul li {
  padding-bottom: 10px;
}

.hidden {
  display: none;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none;
  }
}
.component-top-icon {
  position: absolute;
  top: calc(clamp(50px, 15vw, var(--component-top-icon-height)) / 2 * -1);
  left: 0;
  right: 0;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}
.component-top-icon img {
  width: auto;
  height: clamp(50px, 15vw, var(--component-top-icon-height));
  object-fit: contain;
}

.blue-highlight {
  color: var(--color-blue);
}

.button {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: var(--color-blue);
  border-radius: 0px 0px 0px 0px;
  padding: 10px 20px 10px 20px;
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
}
.button:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0Ij48cGF0aCBmaWxsPSJ3aGl0ZSIgZD0iTTI4NS40NzYgMjcyLjk3MUw5MS4xMzIgNDY3LjMxNGMtOS4zNzMgOS4zNzMtMjQuNTY5IDkuMzczLTMzLjk0MSAwbC0yMi42NjctMjIuNjY3Yy05LjM1Ny05LjM1Ny05LjM3NS0yNC41MjItLjA0LTMzLjkwMUwxODguNTA1IDI1NiAzNC40ODQgMTAxLjI1NWMtOS4zMzUtOS4zNzktOS4zMTctMjQuNTQ0LjA0LTMzLjkxbDIyLjY2Ny0yMi42NjdjOS4zNzMtOS4zNzMgMjQuNTY5LTkuMzczIDMzLjk0MSAwTDI4NS40NzUgMjM5LjAzYzkuMzczIDkuMzcyIDkuMzczIDI0LjU2OC4wMDEgMzMuOTQxeiIvPjwvc3ZnPg==");
  display: inline-block;
  margin-left: 25px;
  width: 12px;
  object-fit: contain;
  transform: translateY(2px);
}
.button:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}
.button:hover:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0Ij48cGF0aCBmaWxsPSIjMDAwMEYwIiBkPSJNMjg1LjQ3NiAyNzIuOTcxTDkxLjEzMiA0NjcuMzE0Yy05LjM3MyA5LjM3My0yNC41NjkgOS4zNzMtMzMuOTQxIDBsLTIyLjY2Ny0yMi42NjdjLTkuMzU3LTkuMzU3LTkuMzc1LTI0LjUyMi0uMDQtMzMuOTAxTDE4OC41MDUgMjU2IDM0LjQ4NCAxMDEuMjU1Yy05LjMzNS05LjM3OS05LjMxNy0yNC41NDQuMDQtMzMuOTFsMjIuNjY3LTIyLjY2N2M5LjM3My05LjM3MyAyNC41NjktOS4zNzMgMzMuOTQxIDBMMjg1LjQ3NSAyMzkuMDNjOS4zNzMgOS4zNzIgOS4zNzMgMjQuNTY4LjAwMSAzMy45NDF6Ii8+PC9zdmc+");
}
.button--secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.button--secondary:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0Ij48cGF0aCBmaWxsPSJ3aGl0ZSIgZD0iTTI4NS40NzYgMjcyLjk3MUw5MS4xMzIgNDY3LjMxNGMtOS4zNzMgOS4zNzMtMjQuNTY5IDkuMzczLTMzLjk0MSAwbC0yMi42NjctMjIuNjY3Yy05LjM1Ny05LjM1Ny05LjM3NS0yNC41MjItLjA0LTMzLjkwMUwxODguNTA1IDI1NiAzNC40ODQgMTAxLjI1NWMtOS4zMzUtOS4zNzktOS4zMTctMjQuNTQ0LjA0LTMzLjkxbDIyLjY2Ny0yMi42NjdjOS4zNzMtOS4zNzMgMjQuNTY5LTkuMzczIDMzLjk0MSAwTDI4NS40NzUgMjM5LjAzYzkuMzczIDkuMzcyIDkuMzczIDI0LjU2OC4wMDEgMzMuOTQxeiIvPjwvc3ZnPg==");
}
.button--secondary:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}
.button--secondary:hover:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0Ij48cGF0aCBmaWxsPSIjMDAwMEYwIiBkPSJNMjg1LjQ3NiAyNzIuOTcxTDkxLjEzMiA0NjcuMzE0Yy05LjM3MyA5LjM3My0yNC41NjkgOS4zNzMtMzMuOTQxIDBsLTIyLjY2Ny0yMi42NjdjLTkuMzU3LTkuMzU3LTkuMzc1LTI0LjUyMi0uMDQtMzMuOTAxTDE4OC41MDUgMjU2IDM0LjQ4NCAxMDEuMjU1Yy05LjMzNS05LjM3OS05LjMxNy0yNC41NDQuMDQtMzMuOTFsMjIuNjY3LTIyLjY2N2M5LjM3My05LjM3MyAyNC41NjktOS4zNzMgMzMuOTQxIDBMMjg1LjQ3NSAyMzkuMDNjOS4zNzMgOS4zNzIgOS4zNzMgMjQuNTY4LjAwMSAzMy45NDF6Ii8+PC9zdmc+");
}
.button--tertiary {
  background-color: var(--color-white);
  color: var(--color-blue);
  border-color: var(--color-white);
}
.button--tertiary:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0Ij48cGF0aCBmaWxsPSIjMDAwMEYwIiBkPSJNMjg1LjQ3NiAyNzIuOTcxTDkxLjEzMiA0NjcuMzE0Yy05LjM3MyA5LjM3My0yNC41NjkgOS4zNzMtMzMuOTQxIDBsLTIyLjY2Ny0yMi42NjdjLTkuMzU3LTkuMzU3LTkuMzc1LTI0LjUyMi0uMDQtMzMuOTAxTDE4OC41MDUgMjU2IDM0LjQ4NCAxMDEuMjU1Yy05LjMzNS05LjM3OS05LjMxNy0yNC41NDQuMDQtMzMuOTFsMjIuNjY3LTIyLjY2N2M5LjM3My05LjM3MyAyNC41NjktOS4zNzMgMzMuOTQxIDBMMjg1LjQ3NSAyMzkuMDNjOS4zNzMgOS4zNzIgOS4zNzMgMjQuNTY4LjAwMSAzMy45NDF6Ii8+PC9zdmc+");
}
.button--tertiary:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.button--tertiary:hover:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0Ij48cGF0aCBmaWxsPSJ3aGl0ZSIgZD0iTTI4NS40NzYgMjcyLjk3MUw5MS4xMzIgNDY3LjMxNGMtOS4zNzMgOS4zNzMtMjQuNTY5IDkuMzczLTMzLjk0MSAwbC0yMi42NjctMjIuNjY3Yy05LjM1Ny05LjM1Ny05LjM3NS0yNC41MjItLjA0LTMzLjkwMUwxODguNTA1IDI1NiAzNC40ODQgMTAxLjI1NWMtOS4zMzUtOS4zNzktOS4zMTctMjQuNTQ0LjA0LTMzLjkxbDIyLjY2Ny0yMi42NjdjOS4zNzMtOS4zNzMgMjQuNTY5LTkuMzczIDMzLjk0MSAwTDI4NS40NzUgMjM5LjAzYzkuMzczIDkuMzcyIDkuMzczIDI0LjU2OC4wMDEgMzMuOTQxeiIvPjwvc3ZnPg==");
}
.button--quaternary {
  background-color: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.button--quaternary:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0Ij48cGF0aCBmaWxsPSIjMDAwMEYwIiBkPSJNMjg1LjQ3NiAyNzIuOTcxTDkxLjEzMiA0NjcuMzE0Yy05LjM3MyA5LjM3My0yNC41NjkgOS4zNzMtMzMuOTQxIDBsLTIyLjY2Ny0yMi42NjdjLTkuMzU3LTkuMzU3LTkuMzc1LTI0LjUyMi0uMDQtMzMuOTAxTDE4OC41MDUgMjU2IDM0LjQ4NCAxMDEuMjU1Yy05LjMzNS05LjM3OS05LjMxNy0yNC41NDQuMDQtMzMuOTFsMjIuNjY3LTIyLjY2N2M5LjM3My05LjM3MyAyNC41NjktOS4zNzMgMzMuOTQxIDBMMjg1LjQ3NSAyMzkuMDNjOS4zNzMgOS4zNzIgOS4zNzMgMjQuNTY4LjAwMSAzMy45NDF6Ii8+PC9zdmc+");
}
.button--quaternary:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.button--quaternary:hover:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0Ij48cGF0aCBmaWxsPSJ3aGl0ZSIgZD0iTTI4NS40NzYgMjcyLjk3MUw5MS4xMzIgNDY3LjMxNGMtOS4zNzMgOS4zNzMtMjQuNTY5IDkuMzczLTMzLjk0MSAwbC0yMi42NjctMjIuNjY3Yy05LjM1Ny05LjM1Ny05LjM3NS0yNC41MjItLjA0LTMzLjkwMUwxODguNTA1IDI1NiAzNC40ODQgMTAxLjI1NWMtOS4zMzUtOS4zNzktOS4zMTctMjQuNTQ0LjA0LTMzLjkxbDIyLjY2Ny0yMi42NjdjOS4zNzMtOS4zNzMgMjQuNTY5LTkuMzczIDMzLjk0MSAwTDI4NS40NzUgMjM5LjAzYzkuMzczIDkuMzcyIDkuMzczIDI0LjU2OC4wMDEgMzMuOTQxeiIvPjwvc3ZnPg==");
}
@media (min-width: 768px) {
  .button {
    font-size: 16px;
  }
}
@media (min-width: 1280px) {
  .button {
    font-size: 20px;
  }
}

/* styles/wysiwyg-block.css */
.wysiwyg {
  --color-text: var(--color-black);
  --color-muted: #666;
  --color-link: var(--color-blue);
  --color-link-hover: #005177;
  --color-border: #ccc;
  --color-border-light: #ddd;
  --color-background-light: #f9f9f9;
  --color-background-code: #f1f1f1;
  --color-heading-bg: #f5f5f5;
  font-family: inherit;
  line-height: 1.6;
  color: var(--color-text);
}

.wysiwyg p {
  margin: 1em 0;
}

.wysiwyg strong {
  font-weight: bold;
}

.wysiwyg em {
  font-style: italic;
}

.wysiwyg u {
  text-decoration: underline;
}

.wysiwyg s {
  text-decoration: line-through;
}

.wysiwyg a {
  color: var(--color-link);
  text-decoration: underline;
}

.wysiwyg a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}

.wysiwyg blockquote {
  margin: 1em 0;
  padding: 0.5em 1em;
  border-left: 4px solid var(--color-border);
  color: var(--color-muted);
  font-style: italic;
  background: var(--color-background-light);
}

.wysiwyg code {
  background: var(--color-background-code);
  padding: 0.2em 0.4em;
  font-family: monospace;
  font-size: 0.95em;
  border-radius: 3px;
}

.wysiwyg pre {
  background: var(--color-background-code);
  padding: 1em;
  overflow: auto;
  font-family: monospace;
  font-size: 0.95em;
  border-radius: 4px;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  margin: 1.5em 0 1em;
  line-height: 1.2;
  font-weight: bold;
}

.wysiwyg h1 {
  font-size: 2em;
}

.wysiwyg h2 {
  font-size: 1.75em;
}

.wysiwyg h3 {
  font-size: 1.5em;
}

.wysiwyg h4 {
  font-size: 1.25em;
}

.wysiwyg h5 {
  font-size: 1.1em;
}

.wysiwyg h6 {
  font-size: 1em;
}

.wysiwyg ul {
  list-style: square;
}

.wysiwyg ul,
.wysiwyg ol {
  padding-left: 1.1em;
  margin: 1em 0;
}

.wysiwyg li {
  margin: 0.5em 0;
}

.wysiwyg dl {
  margin: 1em 0;
}

.wysiwyg dt {
  font-weight: bold;
}

.wysiwyg dd {
  margin-left: 1em;
}

.wysiwyg hr {
  border: 0;
  border-top: 1px solid var(--color-border-light);
  margin: 2em 0;
}

.wysiwyg img,
.wysiwyg video,
.wysiwyg iframe {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em 0;
}

.wysiwyg figure {
  margin: 1em 0;
  text-align: center;
}

.wysiwyg figcaption {
  font-size: 0.9em;
  color: var(--color-muted);
}

.wysiwyg table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.wysiwyg th,
.wysiwyg td {
  border: 1px solid var(--color-border);
  padding: 0.5em;
  text-align: left;
}

.wysiwyg thead {
  background: var(--color-heading-bg);
  font-weight: bold;
}

.wysiwyg abbr {
  text-decoration: dotted underline;
  cursor: help;
}

.wysiwyg small {
  font-size: 0.85em;
}

.wysiwyg sup,
.wysiwyg sub {
  font-size: 0.8em;
  line-height: 0;
  position: relative;
}

.wysiwyg sup {
  top: -0.5em;
}

.wysiwyg sub {
  bottom: -0.25em;
}

.hero {
  padding-block: 180px 40px;
  min-height: 500px;
  color: var(--color-white);
  line-height: 1.2;
  position: relative;
}
.hero--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero--bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(214.81deg, rgba(0, 0, 0, 0) 30.29%, #000000 99.6%);
}
.hero .title {
  font-size: 40px;
  font-weight: 700;
}
.hero .description {
  font-size: 20px;
  margin-top: 30px;
}
.hero .title,
.hero .description {
  max-width: 980px;
}
.hero .button-wrapper {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
}
.hero--grayscale img {
  filter: grayscale(100%);
}
@media (min-width: 768px) {
  .hero {
    padding-block: 200px 80px;
    min-height: 600px;
  }
  .hero .title {
    font-size: 50px;
  }
  .hero .description {
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  .hero {
    padding-block: 260px 120px;
    min-height: 800px;
  }
  .hero .title {
    font-size: 60px;
  }
  .hero .description {
    font-size: 24px;
  }
}

.sticky-navbar {
  background-color: var(--color-blue);
  padding-block: 0;
  position: sticky;
  z-index: var(--z-index-navigation);
  top: 0;
}
.sticky-navbar::before, .sticky-navbar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  pointer-events: none;
  z-index: 1;
}
.sticky-navbar::before {
  left: 0;
  background: linear-gradient(to right, var(--color-blue) 0%, rgba(var(--color-blue-rgb), 0) 100%);
}
.sticky-navbar::after {
  right: 0;
  background: linear-gradient(to left, var(--color-blue) 0%, rgba(var(--color-blue-rgb), 0) 100%);
}
.sticky-navbar .list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.sticky-navbar .item {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}
.sticky-navbar .link {
  padding-block: 20px;
  padding-inline: 15px;
  color: var(--color-white-frost);
  font-size: 16px;
  line-height: 1.3;
  display: block;
  white-space: nowrap;
  transition: color var(--fast-transition);
  font-weight: 400;
  transition: font-weight 0.2s ease;
}
.sticky-navbar .link:hover {
  color: rgba(var(--color-white-rgb), 0.65);
}
.sticky-navbar .link.active {
  font-weight: 700;
}
.sticky-navbar--non-sticky {
  position: relative;
}
@media (min-width: 768px) {
  .sticky-navbar::before, .sticky-navbar::after {
    width: 55px;
  }
}

.video-player {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  cursor: pointer;
}
.video-player video {
  width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  border: none;
  margin: 0;
  padding: 0;
  object-fit: cover;
  aspect-ratio: 13.2/7.4;
}
.video-player .play-btn {
  position: absolute;
  bottom: 0;
  left: var(--container-padding);
  width: 50px;
  height: 50px;
  background-color: #0000f0;
  cursor: pointer;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-player .play-btn::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgNDAgNDUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0zOS4zMDE4IDIyLjcxM0wwLjY5OTIxOSA0NS4wMDAyTDAuNjk5MjIxIDAuNDI1NzgxTDM5LjMwMTggMjIuNzEzWiIgZmlsbD0iI0YzRjhGQiIvPgo8L3N2Zz4=");
  display: block;
  width: 20px;
  height: 20px;
}
.video-player .play-btn.paused::before {
  transform: translateX(-1px);
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgNDAgNDUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3QgeD0iNiIgeT0iNSIgd2lkdGg9IjgiIGhlaWdodD0iMzUiIGZpbGw9IiNGM0Y4RkIiLz4KICA8cmVjdCB4PSIyNiIgeT0iNSIgd2lkdGg9IjgiIGhlaWdodD0iMzUiIGZpbGw9IiNGM0Y4RkIiLz4KPC9zdmc+");
}
.video-player .progress-container {
  position: absolute;
  bottom: 17px;
  left: 100px;
  right: 50px;
  padding-block: 6px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
}
.video-player .progress-container-background {
  width: 100%;
  height: 4px;
  background-color: var(--color-white-frost);
  border-radius: 12px;
}
.video-player .progress-bar {
  height: 100%;
  width: 0%;
  background-color: #0000f0;
  border-radius: 100px;
  transition: width 0.2s ease;
}
.video-player--youtube .youtube-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 13.2/7.4;
}
.video-player--youtube .youtube-poster {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video-player--youtube .youtube-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-player--youtube .youtube-poster .youtube-play-btn {
  left: 0;
}
.video-player--youtube .youtube-iframe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video-player--youtube .youtube-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-player--grayscale video:has(+ .play-btn) {
  filter: grayscale(100%);
}
.video-player--grayscale video:has(+ .play-btn.paused) {
  filter: unset;
}
.video-player--grayscale.video-player--youtube .youtube-poster img {
  filter: grayscale(100%);
}
@media (min-width: 768px) {
  .video-player .play-btn {
    width: 100px;
    height: 100px;
  }
  .video-player .play-btn::before {
    width: 38px;
    height: 38px;
  }
  .video-player .progress-container {
    bottom: 38px;
    left: 180px;
    right: 80px;
  }
}

.text-image {
  position: relative;
}
.text-image .grid {
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  gap: 60px;
}
.text-image .column--image {
  height: 100%;
  position: relative;
}
.text-image .column--content {
  padding-block: 0;
}
.text-image .overlay-image {
  position: absolute;
  left: clamp(20px, 8vw, 60px);
  bottom: clamp(20px, 8vw, 60px);
  width: clamp(120px, 15vw, 220px);
  height: auto;
  max-height: clamp(120px, 15vw, 220px);
  z-index: 1;
}
.text-image .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-image .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}
.text-image .description {
  font-size: 18px;
  line-height: 1.3;
  margin-top: 20px;
}
.text-image .description p + p {
  margin-top: 16px;
}
.text-image .button {
  margin-top: 20px;
}
.text-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 50%;
  width: 168px;
  max-height: 248px;
  overflow: hidden;
  padding: 20px;
  background-color: var(--color-blue);
  color: var(--color-white);
  z-index: 1;
  line-height: 1.2;
}
.text-image .teaser {
  font-size: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 8px;
}
.text-image .teaser img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.text-image .label {
  font-size: 20px;
  color: inherit;
}
.text-image--smaller-title .title:only-child {
  font-size: 30px;
}
.text-image--reverse .column--image {
  order: -1;
}
.text-image--wide .container {
  max-width: calc(var(--container-wide) + 2 * var(--container-padding));
}
.text-image--overlay .column--content {
  padding-block: 0;
}
.text-image--background-frost-white {
  background-color: var(--color-white-frost);
}
.text-image--background-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.text-image--background-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 46, 77, 0.5);
}
.text-image--background-image .title,
.text-image--background-image .description {
  color: var(--color-white);
}
.text-image--grayscale img {
  filter: grayscale(100%);
}
.text-image--video-player .column--image {
  display: flex;
  align-items: center;
}
.text-image--video-player .video-player {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  cursor: pointer;
}
.text-image--video-player .video-player video {
  width: 100%;
  height: 100%;
  display: block;
  line-height: 0;
  border: none;
  margin: 0;
  padding: 0;
  object-fit: cover;
}
.text-image--video-player .video-player .play-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  width: 50px;
  height: 50px;
  background-color: #0000f0;
  cursor: pointer;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-image--video-player .video-player .play-btn::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgNDAgNDUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0zOS4zMDE4IDIyLjcxM0wwLjY5OTIxOSA0NS4wMDAyTDAuNjk5MjIxIDAuNDI1NzgxTDM5LjMwMTggMjIuNzEzWiIgZmlsbD0iI0YzRjhGQiIvPgo8L3N2Zz4=");
  display: block;
  width: 20px;
  height: 20px;
}
.text-image--video-player .video-player .play-btn.paused::before {
  transform: translateX(-1px);
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgNDAgNDUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3QgeD0iNiIgeT0iNSIgd2lkdGg9IjgiIGhlaWdodD0iMzUiIGZpbGw9IiNGM0Y4RkIiLz4KICA8cmVjdCB4PSIyNiIgeT0iNSIgd2lkdGg9IjgiIGhlaWdodD0iMzUiIGZpbGw9IiNGM0Y4RkIiLz4KPC9zdmc+");
}
.text-image--video-player .video-player--youtube .youtube-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 13.2/7.4;
}
.text-image--video-player .video-player--youtube .youtube-poster {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.text-image--video-player .video-player--youtube .youtube-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.text-image--video-player .video-player--youtube .youtube-poster .youtube-play-btn {
  right: 0;
}
.text-image--video-player .video-player--youtube .youtube-iframe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.text-image--video-player .video-player--youtube .youtube-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.text-image--video-player .image {
  display: none;
}
.text-image--video-player .overlay-image {
  display: none;
}
.text-image--video-player--grayscale .video-player video {
  filter: grayscale(100%);
}
.text-image--video-player--grayscale .video-player.video-player--youtube .youtube-poster img {
  filter: grayscale(100%);
}
@media (min-width: 768px) {
  .text-image--video-player .video-player .play-btn {
    width: 100px;
    height: 100px;
  }
  .text-image--video-player .video-player .play-btn::before {
    width: 38px;
    height: 38px;
  }
  .text-image--video-player .video-player .progress-container {
    bottom: 38px;
    left: 180px;
    right: 80px;
  }
}
@media (max-width: 767px) {
  .text-image .column--image {
    order: -1;
  }
}
@media (min-width: 768px) {
  .text-image .container {
    padding-left: var(--container-padding);
    padding-right: 0;
  }
  .text-image .title:only-child {
    font-size: 40px;
  }
  .text-image .grid {
    grid-template-columns: 1fr 1fr;
    gap: 90px;
  }
  .text-image .column--content {
    padding-block: 100px;
  }
  .text-image .overlay {
    min-width: 55%;
    width: 218px;
    max-height: 298px;
    padding: 30px;
  }
  .text-image .teaser {
    font-size: 70px;
  }
  .text-image .teaser img {
    width: 58px;
    height: 58px;
  }
  .text-image .label {
    font-size: 24px;
  }
  .text-image--smaller-title .title:only-child {
    font-size: 30px;
  }
  .text-image--reverse .container {
    padding-right: var(--container-padding);
    padding-left: 0;
  }
  .text-image--overlay .column--content {
    padding-block: 150px;
  }
  .text-image--text-only .grid {
    grid-template-columns: minmax(0, 922px);
  }
  .text-image--background-image:before {
    background: linear-gradient(259.07deg, rgba(27, 46, 77, 0) 25.44%, #1B2E4D 91.49%);
  }
}
@media (min-width: 1280px) {
  .text-image .grid {
    gap: 120px;
  }
  .text-image .container {
    padding-inline: 0;
    padding-left: 120px;
    gap: 120px;
  }
  .text-image .column--content {
    padding-block: 150px;
  }
  .text-image .overlay {
    min-width: 60%;
    width: 268px;
    max-height: 348px;
    padding: 40px;
  }
  .text-image .teaser {
    font-size: 90px;
  }
  .text-image .teaser img {
    width: 72px;
    height: 72px;
  }
  .text-image .label {
    font-size: 30px;
  }
  .text-image--reverse .container {
    padding-inline: 0;
    padding-right: 120px;
    padding-left: 0;
  }
  .text-image--overlay .column--content {
    padding-block: 250px;
  }
}

.text-image-wrapper {
  position: relative;
}
.text-image-wrapper .headline {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
}
.text-image-wrapper .grid-wrapper {
  display: grid;
  grid-template-columns: 100%;
  gap: 30px;
  margin-top: 30px;
}
.text-image-wrapper .text-image .grid {
  grid-template-columns: 100%;
  gap: 20px;
}
.text-image-wrapper .text-image .container {
  padding-inline: 0;
}
.text-image-wrapper .text-image .column--content {
  padding-block: 0;
}
.text-image-wrapper .text-image .column--image {
  order: -1;
}
@media (min-width: 768px) {
  .text-image-wrapper .headline {
    font-size: 30px;
  }
  .text-image-wrapper .grid-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 40px;
  }
  .text-image-wrapper .text-image .grid {
    grid-template-columns: 100%;
    gap: 20px;
  }
  .text-image-wrapper .text-image .container {
    padding-inline: 0;
    padding-left: 0;
    gap: 0;
  }
}

.flip-cards {
  background-color: var(--color-white-frost);
  padding-block: 60px;
  position: relative;
}
.flip-cards--has-bg-image *:not(.button) {
  z-index: 5;
  color: var(--color-white);
}
.flip-cards--has-bg-image:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.flip-cards--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1 !important;
}
.flip-cards--bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flip-cards--grayscale img {
  filter: grayscale(100%);
}
.flip-cards--grayscale .card--has-bg-image {
  filter: grayscale(100%);
}
.flip-cards--bg-blue {
  background-color: var(--color-blue);
}
.flip-cards--bg-blue .content,
.flip-cards--bg-blue .teaser,
.flip-cards--bg-blue .description {
  color: var(--color-white);
}
.flip-cards--bg-white {
  background-color: var(--color-white);
}
.flip-cards--card-size-small .card {
  height: 200px !important;
}
.flip-cards--card-size-extra-small .card {
  height: 150px !important;
}
.flip-cards .content {
  max-width: 745px;
}
.flip-cards .subtitle {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.flip-cards .title {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  margin-block: 20px;
}
.flip-cards .teaser {
  font-size: 18px;
  line-height: 1.3;
  margin-block: 20px;
}
.flip-cards .teaser p {
  margin: 0;
}
.flip-cards .description {
  font-size: 16px;
  line-height: 1.3;
  margin-block: 20px;
}
.flip-cards .grid {
  display: grid;
  grid-template-columns: 100%;
  gap: var(--container-padding);
  padding-block: 20px;
}
.flip-cards .circle {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--color-white);
  margin-bottom: 20px;
}
.flip-cards .circle--no-bg {
  background-color: transparent !important;
}
.flip-cards .circle .icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.flip-cards .circle .icon--hover {
  display: none;
}
.flip-cards .front,
.flip-cards .back,
.flip-cards .circle {
  position: relative;
  z-index: 2 !important;
}
.flip-cards .front {
  display: block;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}
.flip-cards .back {
  display: none;
  font-size: 16px;
  line-height: 1.3;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.flip-cards .back::-webkit-scrollbar {
  width: 6px;
}
.flip-cards .back::-webkit-scrollbar-track {
  background: transparent;
}
.flip-cards .back::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.flip-cards .back::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}
.flip-cards a.card {
  text-decoration: underline;
  cursor: pointer;
}
.flip-cards .card {
  position: relative;
  background-color: var(--color-blue);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  height: 250px;
  overflow: hidden;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.flip-cards .card--has-bg-image:before {
  content: "";
  background-image: linear-gradient(206deg, rgba(0, 0, 0, 0.3019607843) 30%, rgba(0, 0, 0, 0.6901960784) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.flip-cards .card:has(.back:not(:empty)):hover {
  background-color: var(--color-black);
  background-image: none !important;
}
.flip-cards .card:has(.back:not(:empty)):hover:before {
  content: none;
}
.flip-cards .card:has(.back:not(:empty)):hover .front {
  display: none;
}
.flip-cards .card:has(.back:not(:empty)):hover .back {
  display: block;
}
.flip-cards .card:has(.back:not(:empty)):hover .icon {
  display: none;
}
.flip-cards .card:has(.back:not(:empty)):hover .icon--hover {
  display: block;
}
.flip-cards .card--background-black {
  background-color: var(--color-black);
}
.flip-cards .card--background-black:has(.back:not(:empty)):hover {
  background-color: var(--color-white);
  color: var(--color-black);
}
.flip-cards .card--background-black:has(.back:not(:empty)):hover .circle {
  background-color: var(--color-black);
}
.flip-cards .card--background-black:has(.back:not(:empty)):hover .back {
  color: var(--color-black);
}
.flip-cards .card--background-black:has(.back:not(:empty)):hover .back * {
  color: var(--color-black);
}
.flip-cards .card--background-white {
  background-color: var(--color-white);
  color: var(--color-black);
}
.flip-cards .card--background-white .front {
  color: var(--color-black);
}
.flip-cards .card--background-white .circle {
  background-color: var(--color-black);
}
.flip-cards .card--background-white:has(.back:not(:empty)):hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
.flip-cards .card--background-white:has(.back:not(:empty)):hover .circle {
  background-color: var(--color-white);
}
.flip-cards .card--background-white-frost {
  background-color: var(--color-white-frost);
  color: var(--color-black);
}
.flip-cards .card--background-white-frost .front {
  color: var(--color-black);
}
.flip-cards .card--background-white-frost .circle {
  color: var(--color-black) !important;
}
.flip-cards .card--background-white-frost:has(.back:not(:empty)):hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
.flip-cards .card--background-white-frost:has(.back:not(:empty)):hover .circle {
  color: var(--color-white) !important;
}
.flip-cards .card--value .circle {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  font-weight: 700;
  font-size: 30px;
  color: var(--color-white);
}
.flip-cards .card--value.card--background-white .circle {
  background-color: transparent !important;
  color: var(--color-black);
}
.flip-cards .card--value.card--background-white:hover .circle {
  color: var(--color-white);
}
.flip-cards .card--value.card--background-black .circle {
  background-color: transparent !important;
  color: var(--color-white);
}
.flip-cards .card--value.card--background-black:hover .circle {
  color: var(--color-black);
}
.flip-cards .button-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.flip-cards--has-no-gap .grid {
  gap: 0;
}
@media (min-width: 768px) {
  .flip-cards {
    padding-block: 80px;
  }
  .flip-cards .subtitle {
    font-size: 24px;
  }
  .flip-cards .title {
    font-size: 40px;
  }
  .flip-cards .teaser {
    font-size: 24px;
  }
  .flip-cards .description {
    font-size: 18px;
  }
  .flip-cards .grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-block: 60px;
  }
  .flip-cards .button-wrapper {
    margin-top: 50px;
  }
  .flip-cards--has-no-gap .grid {
    gap: 0;
  }
}
@media (min-width: 1024px) {
  .flip-cards--four-columns .grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .flip-cards--has-no-gap .grid {
    gap: 0;
  }
}
@media (min-width: 1280px) {
  .flip-cards {
    padding-block: 100px;
  }
  .flip-cards .subtitle {
    font-size: 30px;
  }
  .flip-cards .title {
    font-size: 48px;
  }
  .flip-cards .teaser {
    font-size: 28px;
  }
  .flip-cards .grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .flip-cards--four-columns .grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .flip-cards--has-no-gap .grid {
    gap: 0;
  }
}

.content-columns {
  background-color: var(--color-white-frost);
  padding-block: 60px;
  position: relative;
}
.content-columns .content {
  max-width: 745px;
}
.content-columns .title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  margin-block: 20px;
}
.content-columns .description {
  font-size: 16px;
  line-height: 1.3;
  margin-block: 20px;
}
.content-columns .grid {
  display: grid;
  grid-template-columns: 100%;
  gap: var(--container-padding);
  padding-block: 20px;
}
.content-columns .circle {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-columns .circle img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.content-columns .top {
  padding: 30px;
  color: var(--card-top-color, var(--color-black));
}
.content-columns .bottom {
  padding: 20px 30px;
  background-color: var(--card-bottom-bg, var(--color-blue));
  color: var(--color-white);
}
.content-columns .headline {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}
.content-columns .teaser {
  font-size: 16px;
  margin-top: 20px;
}
.content-columns .result {
  font-size: 16px;
  font-weight: 700;
}
.content-columns .text {
  font-size: 16px;
  margin-top: 4px;
}
.content-columns a.card:hover .top {
  text-decoration: underline;
}
.content-columns .card {
  line-height: 1.3;
  background-color: var(--card-bg, var(--color-white));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}
.content-columns .card--background-black {
  --card-bg: var(--color-black);
  --card-top-color: var(--color-white);
}
.content-columns .card--background-black .teaser {
  color: var(--color-white);
}
.content-columns .card--background-blue {
  --card-bg: var(--color-blue);
  --card-top-color: var(--color-white);
  --card-bottom-bg: var(--color-black);
}
.content-columns .card--background-blue a {
  color: var(--color-white) !important;
  text-decoration: underline;
}
.content-columns .card--background-blue .teaser {
  color: var(--color-white);
}
.content-columns .card--background-white-frost {
  --card-bg: var(--color-white-frost);
  --card-top-color: var(--color-black);
  --card-bottom-bg: var(--color-blue);
}
.content-columns .card--value .circle {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  font-weight: 700;
  font-size: 30px;
  color: var(--color-black);
  border: none;
}
.content-columns .card--value .circle > img,
.content-columns .card--value .circle > svg {
  display: none;
}
.content-columns .card--value.card--background-blue .circle {
  background-color: transparent !important;
  color: var(--color-white);
}
.content-columns .card--value.card--background-black .circle {
  background-color: transparent !important;
  color: var(--color-white);
}
.content-columns .button-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.content-columns--background-blue {
  background-color: var(--color-blue);
}
.content-columns--background-blue .content > * {
  color: var(--color-white);
}
.content-columns--background-black {
  background-color: var(--color-black);
}
.content-columns--background-black .content > * {
  color: var(--color-white);
}
.content-columns--background-white {
  background-color: var(--color-white);
}
@media (min-width: 768px) {
  .content-columns {
    padding-block: 80px;
  }
  .content-columns .title {
    font-size: 24px;
  }
  .content-columns .description {
    font-size: 18px;
  }
  .content-columns .grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-block: 60px;
  }
  .content-columns .button-wrapper {
    margin-top: 50px;
  }
  .content-columns--four-columns .grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .content-columns {
    padding-block: 100px;
  }
  .content-columns .title {
    font-size: 30px;
  }
  .content-columns .grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .content-columns--four-columns .grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.testimonials {
  padding: 70px 0;
  position: relative;
}
.testimonials:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.testimonials--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.testimonials--bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials--grayscale img {
  filter: grayscale(100%);
}
.testimonials .container {
  z-index: 5;
}
.testimonials .headline {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-white);
  text-align: center;
}
.testimonials .slider {
  margin-top: 50px;
}
.testimonials .quote {
  font-size: 16px;
  line-height: 1.2;
  font-style: italic;
  color: var(--color-white);
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-weight: 400;
}
.testimonials .author {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
}
.testimonials .footer {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 100%;
  gap: 50px;
  place-items: center;
}
.testimonials .slick-dots {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.testimonials .slick-dots li {
  flex: 1;
}
.testimonials .slick-dots li.slick-active button {
  background: var(--color-white);
}
.testimonials .slick-dots button {
  width: 100%;
  font-size: 0;
  overflow: hidden;
  background-color: rgba(var(--color-white-rgb), 0.25);
  border: none;
  outline: 0;
  border-radius: 8px;
  height: 5px;
  cursor: pointer;
  min-width: 32px;
}
@media (min-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }
  .testimonials .headline {
    font-size: 24px;
    text-align: left;
  }
  .testimonials .quote {
    font-size: 18px;
    text-align: left;
  }
  .testimonials .author {
    margin-top: 30px;
    text-align: left;
  }
  .testimonials .footer {
    margin-top: 100px;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    place-items: inherit;
    padding-block: 0;
  }
  .testimonials .slick-slide {
    margin: 0 45px;
  }
  .testimonials .slick-list {
    margin: 0 -45px;
  }
  .testimonials .button-wrapper {
    text-align: right;
  }
}
@media (min-width: 1280px) {
  .testimonials {
    padding: 100px 0;
  }
  .testimonials .headline {
    font-size: 30px;
  }
  .testimonials .quote {
    font-size: 20px;
    line-height: 1.5;
  }
  .testimonials .footer {
    margin-top: 70px;
  }
  .testimonials .slick-slide {
    margin: 0 90px;
  }
  .testimonials .slick-list {
    margin: 0 -90px;
  }
}

.latest-resources {
  background-color: var(--color-white-frost);
  padding-block: 50px;
  position: relative;
}
.latest-resources .headline {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 30px;
}
.latest-resources .slider {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--container-padding));
  margin: 0 auto;
  padding-inline: var(--container-padding);
  overflow: hidden;
}
.latest-resources .slick-list {
  overflow: visible !important;
}
.latest-resources .slider-item {
  color: var(--color-black);
  margin-right: 20px;
}
.latest-resources .slider-item:last-child {
  margin-right: 0;
}
.latest-resources .slider-item img {
  max-width: 100%;
  object-fit: cover;
}
.latest-resources .slider-item:hover {
  text-decoration: underline;
}
.latest-resources .content-wrapper {
  padding-top: 20px;
}
.latest-resources .button-wrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.latest-resources--background-white {
  background-color: var(--color-white);
}
.latest-resources--grayscale .slider-item img {
  filter: grayscale(100%);
}
@media (min-width: 768px) {
  .latest-resources {
    padding-block: 80px;
  }
  .latest-resources .headline {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .latest-resources .slider {
    overflow: visible;
  }
  .latest-resources .slider-item {
    margin-right: 30px;
  }
  .latest-resources .button-wrapper {
    margin-top: 60px;
  }
}
@media (min-width: 1280px) {
  .latest-resources {
    padding-block: 100px;
  }
  .latest-resources .headline {
    font-size: 30px;
  }
  .latest-resources .button-wrapper {
    margin-top: 80px;
  }
}

.background-content {
  padding: 20px;
  position: relative;
}
.background-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(var(--color-black-rgb), 0.75));
  z-index: 2;
}
.background-content--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.background-content--bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.background-content--grayscale img {
  filter: grayscale(100%);
}
.background-content .container {
  background-color: var(--color-blue);
  padding: 20px;
  max-width: 100%;
  z-index: 5;
}
.background-content .content {
  color: var(--color-white);
}
.background-content .grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
}
.background-content .title,
.background-content .subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.background-content .subtitle {
  font-weight: 400;
  margin-top: 24px;
}
.background-content .description {
  margin-top: 24px;
  color: var(--color-white);
}
.background-content .button-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.background-content .logo img {
  max-width: 270px;
  height: auto;
  object-fit: contain;
  width: 100%;
}
@media (min-width: 1024px) {
  .background-content {
    padding: 60px;
  }
  .background-content .container {
    padding: 60px;
  }
  .background-content .title,
  .background-content .subtitle {
    font-size: 30px;
  }
  .background-content .grid {
    grid-template-columns: 1fr 270px;
    gap: 60px;
  }
  .background-content .button-wrapper {
    margin-top: 100px;
  }
}

.tabs {
  background-color: var(--color-white-frost);
  position: relative;
}
.tabs .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-black);
}
.tabs .tabs-wrapper {
  overflow: hidden;
}
.tabs .tab-navigation {
  display: flex;
  flex-direction: column;
  position: relative;
}
.tabs .tab-navigation.dropdown-open .tab-button:not(.active) {
  display: block;
}
.tabs .tab-navigation.dropdown-open .tab-button.active:after {
  opacity: 0;
}
.tabs .tab-navigation:not(.dropdown-open) .tab-button:not(.active) {
  display: none;
}
.tabs .tab-navigation:after {
  content: "";
  height: 2px;
  background-color: var(--color-blue);
  width: 100vw;
  left: 0;
  bottom: -1px;
  position: absolute;
  display: none;
  z-index: 1;
}
.tabs .tab-button {
  align-items: center;
  justify-content: center;
  flex: none;
  padding: 16px 12px;
  background: none;
  border: none;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-black);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  text-align: left;
  flex: 0 1 auto;
}
.tabs .tab-button:hover {
  background-color: #f1f3f4;
  color: var(--color-blue);
}
.tabs .tab-button.active {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.tabs .tab-button.active::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0Ij48cGF0aCBmaWxsPSJ3aGl0ZSIgZD0iTTI4NS40NzYgMjcyLjk3MUw5MS4xMzIgNDY3LjMxNGMtOS4zNzMgOS4zNzMtMjQuNTY5IDkuMzczLTMzLjk0MSAwbC0yMi42NjctMjIuNjY3Yy05LjM1Ny05LjM1Ny05LjM3NS0yNC41MjItLjA0LTMzLjkwMUwxODguNTA1IDI1NiAzNC40ODQgMTAxLjI1NWMtOS4zMzUtOS4zNzktOS4zMTctMjQuNTQ0LjA0LTMzLjkxbDIyLjY2Ny0yMi42NjdjOS4zNzMtOS4zNzMgMjQuNTY5LTkuMzczIDMzLjk0MSAwTDI4NS40NzUgMjM5LjAzYzkuMzczIDkuMzcyIDkuMzczIDI0LjU2OC4wMDEgMzMuOTQxeiIvPjwvc3ZnPg==");
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease;
  width: 9px;
  height: auto;
}
.tabs .tab-content-wrapper {
  position: relative;
}
.tabs .tab-navigation,
.tabs .tab-grid {
  max-width: calc(var(--container) + 2 * var(--container-padding));
  margin: 0 auto;
}
.tabs .tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color: var(--color-white);
}
.tabs .tab-content.active {
  display: block;
  opacity: 1;
}
.tabs .tab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 20px;
  padding-left: var(--container-padding);
}
.tabs .tab-left {
  padding-block: 40px;
}
.tabs .tab-left h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.tabs .tab-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tabs .tab-list li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--color-black);
  position: relative;
  padding-left: 24px;
}
.tabs .tab-list li::before {
  content: "•";
  color: var(--color-blue);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 8px;
}
.tabs .tab-right {
  width: calc(100% + var(--container-padding));
  margin-left: calc(var(--container-padding) * -1);
}
.tabs .tab-image {
  width: 100%;
  height: 100%;
}
.tabs .tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/6;
}
.tabs .tab-navigation-buttons {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  background-color: var(--color-blue);
}
.tabs .nav-button {
  padding: 16px 24px;
  border: none;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tabs .nav-button:hover:not(:disabled) {
  background-color: var(--color-black);
}
.tabs .nav-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #ccc;
  color: #ccc;
}
.tabs .nav-button:disabled:hover {
  background-color: var(--color-white);
  color: #ccc;
}
.tabs .nav-button.next-button {
  position: relative;
}
.tabs .nav-button.next-button:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0Ij48cGF0aCBmaWxsPSJ3aGl0ZSIgZD0iTTI4NS40NzYgMjcyLjk3MUw5MS4xMzIgNDY3LjMxNGMtOS4zNzMgOS4zNzMtMjQuNTY5IDkuMzczLTMzLjk0MSAwbC0yMi42NjctMjIuNjY3Yy05LjM1Ny05LjM1Ny05LjM3NS0yNC41MjItLjA0LTMzLjkwMUwxODguNTA1IDI1NiAzNC40ODQgMTAxLjI1NWMtOS4zMzUtOS4zNzktOS4zMTctMjQuNTQ0LjA0LTMzLjkxbDIyLjY2Ny0yMi42NjdjOS4zNzMtOS4zNzMgMjQuNTY5LTkuMzczIDMzLjk0MSAwTDI4NS40NzUgMjM5LjAzYzkuMzczIDkuMzcyIDkuMzczIDI0LjU2OC4wMDEgMzMuOTQxeiIvPjwvc3ZnPg==");
  display: inline-block;
  width: 8px;
  height: auto;
  margin-left: 12px;
  transform: translateY(1px);
}
.tabs--inverted-background-colors {
  background-color: var(--color-white);
}
.tabs--inverted-background-colors .tab-content {
  background-color: var(--color-white-frost);
}
.tabs--grayscale .tab-image img {
  filter: grayscale(100%);
}
@media (min-width: 768px) {
  .tabs .title {
    font-size: 30px;
    margin-bottom: 45px;
  }
  .tabs .tab-right {
    width: 100%;
    margin-left: 0;
  }
  .tabs .tab-left h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .tabs .tab-navigation {
    flex-direction: row;
  }
  .tabs .tab-navigation::after {
    display: block;
  }
  .tabs .tab-navigation.dropdown-open .tab-button:not(.active), .tabs .tab-navigation:not(.dropdown-open) .tab-button:not(.active) {
    display: flex;
  }
  .tabs .tab-button {
    padding: 20px;
    text-align: center;
    font-size: 16px;
  }
  .tabs .tab-button.active::after {
    content: none;
  }
  .tabs .tab-grid {
    grid-template-columns: 360px 1fr;
    grid-template-rows: auto;
  }
  .tabs .nav-button {
    font-size: 14px;
    padding: 12px 24px;
  }
  .tabs .nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
}
@media (min-width: 1280px) {
  .tabs .tab-left {
    padding-block: 100px;
  }
  .tabs .tab-button {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1440px) {
  .tabs .tab-navigation:after {
    left: calc((100vw - var(--container)) / -2 + var(--container-padding));
  }
  .tabs .tab-navigation,
  .tabs .tab-grid {
    padding-inline: var(--container-padding);
  }
  .tabs .tab-image {
    width: calc(100% + (100vw - var(--container)) / 2);
  }
}

.case-study-quote {
  padding: 70px 0;
  position: relative;
}
.case-study-quote:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.case-study-quote--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.case-study-quote--bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-study-quote--grayscale img {
  filter: grayscale(100%);
}
.case-study-quote .container {
  z-index: 5;
}
.case-study-quote .headline {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-white);
  text-align: center;
}
.case-study-quote .box-grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
  margin-bottom: 50px;
}
.case-study-quote .box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--color-white);
  background-color: rgba(var(--color-white-rgb), 0.3);
  padding: 30px;
}
.case-study-quote .value {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
}
.case-study-quote .legend {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}
.case-study-quote .slider {
  margin-top: 50px;
}
.case-study-quote .quote {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  max-width: 982px;
}
.case-study-quote .author {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  font-style: italic;
  line-height: 1.3;
  color: var(--color-white);
  text-align: center;
}
.case-study-quote .footer {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 100%;
  gap: 50px;
  place-items: center;
}
.case-study-quote .button-wrapper {
  overflow: hidden;
}
.case-study-quote .button.slick-is-sliding {
  opacity: 0;
  transform: translateY(100%);
}
.case-study-quote .slick-dots {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.case-study-quote .slick-dots li {
  flex: 1;
}
.case-study-quote .slick-dots li.slick-active button {
  background: var(--color-white);
}
.case-study-quote .slick-dots button {
  width: 100%;
  font-size: 0;
  overflow: hidden;
  background-color: rgba(var(--color-white-rgb), 0.25);
  border: none;
  outline: 0;
  border-radius: 8px;
  height: 5px;
  cursor: pointer;
  min-width: 32px;
}
@media (min-width: 768px) {
  .case-study-quote {
    padding: 80px 0;
  }
  .case-study-quote .box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-study-quote .value {
    font-size: 40px;
  }
  .case-study-quote .headline {
    font-size: 24px;
    text-align: left;
  }
  .case-study-quote .quote {
    font-size: 24px;
    text-align: left;
  }
  .case-study-quote .author {
    font-size: 20px;
    margin-top: 30px;
    text-align: left;
  }
  .case-study-quote .footer {
    margin-top: 100px;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    place-items: inherit;
    align-items: center;
    padding-block: 0;
  }
  .case-study-quote .slick-slide {
    margin: 0 45px;
  }
  .case-study-quote .slick-list {
    margin: 0 -45px;
  }
  .case-study-quote .button-wrapper {
    text-align: right;
  }
}
@media (min-width: 1280px) {
  .case-study-quote {
    padding: 100px 0;
  }
  .case-study-quote .box-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .case-study-quote .value {
    font-size: 50px;
  }
  .case-study-quote .headline {
    font-size: 30px;
  }
  .case-study-quote .quote {
    font-size: 30px;
  }
  .case-study-quote .footer {
    margin-top: 70px;
  }
  .case-study-quote .slick-slide {
    margin: 0 90px;
  }
  .case-study-quote .slick-list {
    margin: 0 -90px;
  }
}

.case-study-details {
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.case-study-details:before {
  content: "";
  position: absolute;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.case-study-details .headline {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-white);
  text-align: center;
}
.case-study-details .slider {
  margin-top: 50px;
}
.case-study-details .footer {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 100%;
  gap: 50px;
  place-items: center;
}
.case-study-details .button-wrapper {
  overflow: hidden;
}
.case-study-details .button.slick-is-sliding {
  opacity: 0;
  transform: translateY(100%);
}
.case-study-details .slick-dots {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.case-study-details .slick-dots li {
  flex: 1;
}
.case-study-details .slick-dots li.slick-active button {
  background: var(--color-white);
}
.case-study-details .slick-dots button {
  width: 100%;
  font-size: 0;
  overflow: hidden;
  background-color: rgba(var(--color-white-rgb), 0.25);
  border: none;
  outline: 0;
  border-radius: 8px;
  height: 5px;
  cursor: pointer;
  min-width: 32px;
}
.case-study-details .subtitle,
.case-study-details .list {
  color: var(--color-white);
}
.case-study-details .subtitle {
  font-size: 26px;
  line-height: 1.3;
}
.case-study-details .wrapper {
  font-size: 18px;
  line-height: 1.3;
}
.case-study-details .title {
  font-weight: 700;
}
.case-study-details .list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.case-study-details .list-item {
  display: flex;
  gap: 20px;
}
.case-study-details .list-item .icon img {
  width: 40px;
  height: 40px;
  overflow: hidden;
  object-fit: contain;
}
@media (min-width: 768px) {
  .case-study-details {
    padding: 80px 0;
  }
  .case-study-details .list {
    gap: 40px;
    margin-top: 60px;
  }
  .case-study-details .subtitle {
    font-size: 30px;
    line-height: 1.3;
  }
  .case-study-details .headline {
    font-size: 24px;
    text-align: left;
  }
  .case-study-details .quote {
    font-size: 24px;
    text-align: left;
  }
  .case-study-details .footer {
    margin-top: 100px;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    place-items: inherit;
    align-items: center;
    padding-block: 0;
  }
  .case-study-details .slick-slide {
    margin: 0 45px;
  }
  .case-study-details .slick-list {
    margin: 0 -45px;
  }
  .case-study-details .button-wrapper {
    text-align: right;
  }
}
@media (min-width: 1280px) {
  .case-study-details {
    padding: 100px 0;
  }
  .case-study-details .subtitle {
    font-size: 40px;
  }
  .case-study-details .wrapper {
    font-size: 20px;
  }
  .case-study-details .headline {
    font-size: 30px;
  }
  .case-study-details .footer {
    margin-top: 70px;
  }
  .case-study-details .slick-slide {
    margin: 0 90px;
  }
  .case-study-details .slick-list {
    margin: 0 -90px;
  }
}

.faqs {
  background-color: var(--color-white-frost);
  padding-block: 60px;
  position: relative;
}
.faqs .content {
  display: grid;
  grid-template-columns: 100%;
  gap: 24px;
}
.faqs .column:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
.faqs .headline {
  font-size: 30px;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
}
.faqs .faq-list {
  list-style: none;
  border-top: 1px solid var(--grey-700);
}
.faqs .faq-item {
  border-bottom: 1px dashed rgba(var(--color-black-rgb), 0.2);
  cursor: pointer;
}
.faqs .faq-item.active .faq-question {
  background-image: url("../../assets/images/tmp/arrow-up.svg");
}
.faqs .faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}
.faqs .faq-item.active .faq-answer-inner {
  padding-top: 8px;
  padding-bottom: 24px;
}
.faqs .faq-question {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  padding-block: 20px;
  color: var(--color-black);
  transition: color 0.5s;
  padding-right: 32px;
  background: url("../../assets/images/tmp/arrow-down.svg") right center no-repeat;
  background-size: auto 10px;
}
.faqs .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.3;
  padding-right: 32px;
}
.faqs .faq-answer-inner {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition: padding 0.3s ease;
}
.faqs .faq-answer-inner *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .faqs {
    padding-block: 80px;
  }
  .faqs .content {
    grid-template-columns: minmax(180px, auto) 1fr;
    gap: 60px;
  }
  .faqs .column:first-child {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
  }
  .faqs .headline {
    font-size: 30px;
    max-width: 180px;
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .faqs {
    padding-block: 100px;
  }
  .faqs .content {
    grid-template-columns: minmax(280px, auto) 1fr;
    gap: 60px;
  }
  .faqs .content {
    gap: 130px;
  }
  .faqs .headline {
    font-size: 40px;
    max-width: 280px;
    text-align: left;
  }
}

.call-to-action {
  padding-block: 50px;
  color: var(--color-white);
  position: relative;
}
.call-to-action.overlay {
  position: relative;
}
.call-to-action.overlay:before {
  content: "";
  background-color: rgba(var(--color-black-rgb), 0.72);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.call-to-action--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.call-to-action--bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.call-to-action .container {
  z-index: 5;
}
.call-to-action .grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}
.call-to-action .button-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.call-to-action .button {
  width: 100%;
  position: relative;
  padding-right: 60px;
  max-width: 360px; /* cap the size */
  white-space: nowrap; /* prevent wrapping */
  overflow: hidden;
  text-overflow: ellipsis;
}
.call-to-action .button:after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-45%);
  display: block;
  margin: 0;
}
.call-to-action .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.call-to-action .title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
}
.call-to-action .description {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  color: inherit;
}
.call-to-action .description *:first-child {
  margin-top: 0;
}
@media (min-width: 768px) {
  .call-to-action {
    padding-block: 100px;
  }
  .call-to-action .grid {
    gap: 60px;
    grid-template-columns: 1fr max-content;
  }
  .call-to-action .title {
    font-size: 40px;
  }
  .call-to-action .description {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .call-to-action {
    padding-block: 150px;
  }
  .call-to-action .grid {
    gap: 100px;
  }
  .call-to-action .title {
    font-size: 50px;
  }
  .call-to-action .description {
    font-size: 20px;
  }
  .call-to-action .button {
    max-width: 460px;
  }
}

.table {
  --table-primary-color: var(--color-blue);
  --table-bg-white: var(--color-white);
  --table-bg-gray: #f8f9fa;
  --table-bg-odd: #F3F8FB;
  --table-text-dark: var(--color-black);
  --table-text-light: var(--color-white);
  --table-border-color: #E3EDF3;
  --table-headline-border-color: var(--color-black);
  --color-purple: #484899;
  padding: 60px 0;
  position: relative;
}
.table .headline {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 40px;
}
.table .table-wrapper {
  background: var(--table-bg-white);
  overflow: hidden;
  display: flex;
}
.table .table-wrapper:has(.comparison-table th:first-child:last-child) .feature-column-wrapper {
  width: 50%;
}
.table .table-wrapper:has(.comparison-table th:first-child:last-child) .scrollable-columns-wrapper {
  width: 50%;
}
.table .table-wrapper:has(.comparison-table th:first-child:last-child) .comparison-table {
  min-width: 100%;
}
@media (min-width: 1280px) {
  .table .table-wrapper:not(:has(.comparison-table th:first-child:last-child)) .feature-column-wrapper {
    width: auto;
  }
  .table .table-wrapper:not(:has(.comparison-table th:first-child:last-child)) .scrollable-columns-wrapper {
    width: auto;
  }
  .table .table-wrapper:not(:has(.comparison-table th:first-child:last-child)) .column {
    width: calc(100% / var(--scrollable-columns, 3));
    min-width: calc(100% / var(--scrollable-columns, 3));
  }
}
.table .feature-column-wrapper {
  flex-shrink: 0;
  width: auto;
  min-width: 135px;
  max-width: 35%;
}
.table .scrollable-columns-wrapper {
  flex: 1;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-black) transparent;
}
.table .scrollable-columns-wrapper::-webkit-scrollbar {
  height: 4px;
}
.table .scrollable-columns-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.table .scrollable-columns-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-black);
  border-radius: 2px;
}
.table .scrollable-columns-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--color-black);
}
.table .feature-table,
.table .comparison-table {
  width: 100%;
  border-collapse: collapse;
  height: 100%;
}
.table .comparison-table {
  min-width: 540px; /* 3 columns × 180px */
}
.table th {
  padding: 20px;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid var(--table-headline-border-color);
  box-sizing: border-box;
}
.table th.highlight {
  border-color: var(--table-border-color);
}
.table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--table-border-color);
  vertical-align: middle;
  min-width: 1px;
  white-space: nowrap;
  font-size: 12px;
}
.table tbody tr:nth-child(odd) .feature-cell {
  background: var(--table-bg-odd);
}
.table tbody tr:nth-child(odd) .cell {
  background: var(--table-bg-odd);
}
.table tbody tr:nth-child(odd) .cell.highlight {
  background: var(--table-primary-color);
  color: var(--table-text-light);
}
.table tbody tr:nth-child(even) .feature-cell {
  background: var(--table-bg-white);
}
.table tbody tr:nth-child(even) .cell {
  background: var(--table-bg-white);
}
.table tbody tr:nth-child(even) .cell.highlight {
  background: var(--table-primary-color);
  color: var(--table-text-light);
}
.table .feature-column {
  background: var(--table-bg-white);
  text-align: left;
  width: 100%;
}
.table .feature-cell {
  text-align: left;
  font-weight: 600;
  white-space: normal;
}
.table .column {
  background: var(--table-bg-white);
  min-width: 180px;
}
.table .column.highlight {
  background: var(--table-primary-color);
  color: var(--table-text-light);
}
.table .cell.highlight {
  background: var(--table-primary-color);
  color: var(--table-text-light);
}
.table .icon {
  width: 16px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
}
.table .text {
  font-size: 14px;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .table {
    padding: 80px 0;
  }
  .table .feature-column-wrapper {
    min-width: 300px;
    max-width: initial;
  }
  .table .table-wrapper:has(.comparison-table th:first-child:last-child) .feature-column-wrapper {
    width: 50%;
  }
  .table th {
    padding: 24px;
    font-size: 16px;
  }
  .table td {
    padding: 20px 24px;
    font-size: 16px;
  }
  .table td.purple .text {
    color: var(--color-purple);
  }
  .table .text {
    font-size: 16px;
  }
  .table .column {
    min-width: 200px;
  }
  .table .comparison-table {
    min-width: 600px; /* 3 columns × 200px */
  }
}
@media (min-width: 1024px) {
  .table td {
    white-space: wrap;
  }
}
@media (min-width: 1280px) {
  .table {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  th {
    padding: 10px;
    font-size: 14px;
  }
}
.charts {
  padding-block: 50px;
  font-weight: 700;
  background-color: var(--color-black);
  color: var(--color-white);
  position: relative;
}
.charts .headline {
  font-size: 30px;
  line-height: 1.2;
}
.charts .subtitle {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.3;
}
.charts .grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
  margin-top: 20px;
}
.charts .chart {
  background-color: rgba(var(--color-white-rgb), 0.1);
  padding: 20px;
}
.charts canvas {
  font-family: var(--primary-font);
}
@media (min-width: 768px) {
  .charts {
    padding-block: 80px;
  }
  .charts .grid {
    grid-template-columns: 1fr 1fr;
  }
  .charts .chart {
    padding: 30px;
  }
  .charts .subtitle,
  .charts .grid {
    margin-top: 40px;
  }
}
@media (min-width: 1280px) {
  .charts {
    padding-block: 100px;
  }
  .charts .chart {
    padding: 50px;
  }
}

.jobs {
  padding-block: 50px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.3;
  position: relative;
}
.jobs .headline {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}
.jobs .list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}
.jobs .item {
  padding-block: 20px;
  border-bottom: 1px dashed rgba(var(--color-white-rgb), 0.7);
}
.jobs .item:first-child {
  padding-top: 0;
}
.jobs .header {
  display: grid;
  grid-template-columns: 100%;
  gap: 16px 50px;
  align-items: start;
}
.jobs .title {
  font-weight: 700;
  min-width: 320px;
  min-width: 0;
  flex: 1 1 auto;
}
.jobs .actions {
  display: flex;
  gap: 16px 30px;
  flex-shrink: 0;
  white-space: nowrap;
}
.jobs .actions .link {
  white-space: nowrap;
}
.jobs .body {
  margin-top: 20px;
  color: inherit;
  max-width: 868px;
}
.jobs .body > *:last-child {
  margin-bottom: 0;
}
.jobs .link {
  font-weight: bold;
  color: inherit;
  text-decoration: underline;
  transition: var(--fast-transition);
}
.jobs .link:hover {
  color: var(--color-blue);
  transform: translateY(-2px);
}
.jobs .footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .jobs {
    padding-block: 80px;
    font-size: 18px;
  }
  .jobs .list {
    margin-top: 40px;
  }
  .jobs .item {
    padding-block: 30px;
  }
  .jobs .headline {
    font-size: 26px;
  }
  .jobs .header {
    grid-template-columns: minmax(auto, 1fr) min-content;
  }
  .jobs .header,
  .jobs .actions {
    gap: 16px 60px;
  }
  .jobs .footer {
    margin-top: 40px;
  }
}
@media (min-width: 1280px) {
  .jobs {
    padding-block: 100px;
    font-size: 20px;
  }
  .jobs .headline {
    font-size: 30px;
  }
  .jobs .header,
  .jobs .actions {
    gap: 16px 150px;
  }
}

.content-form {
  --image-push-size: 60px;
  padding-block: 50px;
  background-color: var(--color-white-frost);
  position: relative;
}
.content-form .grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}
.content-form .column:first-child img {
  width: 100%;
  margin-top: 20px;
}
.content-form .headline {
  color: var(--color-black);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}
.content-form .description {
  font-size: 16px;
  line-height: 1.3;
  margin-top: 20px;
}
.content-form .form-wrapper {
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 30px;
}
@media (min-width: 768px) {
  .content-form {
    padding-block: 80px;
  }
  .content-form .grid {
    grid-template-columns: minmax(auto, 620px) minmax(360px, 1fr);
    gap: 60px;
  }
  .content-form .column:first-child img {
    margin-top: 0;
    width: calc(100% + var(--container-padding));
    margin-left: calc(var(--container-padding) * -1);
    transform: translateY(100px);
  }
  .content-form .headline {
    font-size: 32px;
  }
  .content-form .description {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .content-form {
    padding-block: 100px;
  }
  .content-form .grid {
    gap: 132px;
  }
  .content-form .column {
    padding-left: var(--image-push-size);
  }
  .content-form .column:first-child img {
    width: calc(100% + var(--container-padding) + var(--image-push-size));
    margin-left: calc((var(--container-padding) + var(--image-push-size)) * -1);
    transform: translateY(150px);
  }
  .content-form .headline {
    font-size: 40px;
  }
}

.key-stats {
  background-color: var(--color-black);
  padding-block: 50px;
  color: var(--color-white);
  position: relative;
}
.key-stats .headline {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}
.key-stats .box-grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
  margin-block: 30px;
}
.key-stats .image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: inline-block;
}
.key-stats .box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--color-white);
  background-color: rgba(var(--color-blue-rgb), 0.7);
  padding: 30px;
}
.key-stats .value {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
}
.key-stats .legend {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}
.key-stats .data {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
  margin-top: 2px;
}
.key-stats .description {
  color: inherit;
  font-size: 18px;
}
.key-stats .main-wrapper:has(:not(.box-grid)) {
  margin-top: 20px;
}
.key-stats--bg-white {
  background-color: var(--color-white);
  color: var(--color-black);
}
.key-stats--bg-white .headline,
.key-stats--bg-white .description {
  color: var(--color-black);
}
.key-stats--vertical .main-wrapper {
  display: grid;
  grid-template-columns: 100%;
  gap: 30px;
  margin-block: 30px;
}
.key-stats--vertical .box-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-block: 0;
}
.key-stats--vertical .box {
  background-color: transparent;
  padding: 0;
}
@media (min-width: 768px) {
  .key-stats {
    padding-block: 80px;
  }
  .key-stats .box-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-block: 60px;
  }
  .key-stats .value {
    font-size: 40px;
  }
  .key-stats .headline {
    font-size: 26px;
  }
  .key-stats .data {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 20px;
  }
  .key-stats--vertical .main-wrapper {
    margin-block: 60px;
    grid-template-columns: 300px 1fr;
  }
  .key-stats--vertical .box-grid {
    margin-block: 0;
    gap: 60px;
  }
}
@media (min-width: 1280px) {
  .key-stats {
    padding-block: 100px;
  }
  .key-stats .box-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .key-stats .value {
    font-size: 50px;
  }
  .key-stats .headline {
    font-size: 30px;
  }
}

.footer {
  --light-color: rgba(var(--color-black-rgb), 0.5);
  padding-block: 50px 25px;
}
.footer .grid {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  gap: 20px;
}
.footer img {
  width: 100%;
  object-fit: contain;
  height: auto;
  display: inline-block;
}
.footer .image {
  max-width: 100px;
}
.footer .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.footer .text {
  font-size: 14px;
  line-height: 1.1;
  color: var(--light-color);
  margin-top: 20px;
}
.footer .contact-link {
  display: inline-block;
  color: var(--color-blue);
  font-size: 14px;
  text-decoration: underline;
  margin-top: 20px;
  transition: color var(--fast-transition);
}
.footer .contact-link:hover {
  color: var(--color-black);
}
.footer .menu {
  margin-top: 12px;
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}
.footer .menu > .item {
  margin-bottom: 10px;
}
.footer .menu > .item .link {
  font-size: 16px;
  color: var(--color-black);
  padding-block: 4px;
}
.footer .menu > .menu .item {
  margin-bottom: 4px;
}
.footer .menu > .menu .item .link {
  font-size: 14px;
  color: rgba(var(--color-black-rgb), 0.5);
  padding-block: 2px;
}
.footer .menu:not(:has(.menu)) > .item .link {
  color: rgba(var(--color-black-rgb), 0.5);
}
.footer .menu .item:has(.address) .link {
  color: var(--color-black);
}
.footer .link {
  transition: color var(--fast-transition);
  display: inline-block;
}
.footer .link:hover {
  color: var(--color-blue) !important;
}
.footer .address {
  color: var(--light-color);
}
.footer .newsletter {
  background-color: var(--color-blue);
  padding: 30px;
  color: var(--color-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 200px;
  margin-top: 30px;
  background-image: url("../../assets/images/tmp/MDx-bg.svg");
  background-size: 100px;
  background-position: 30px 30px;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 80px;
}
.footer .newsletter-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.footer .newsletter-text {
  font-size: 14px;
  line-height: 1.1;
  margin-block: 10px;
}
.footer .bottom {
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.footer .social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer .social .link {
  transition: transform var(--fast-transition);
}
.footer .social .link:hover {
  transform: scale(1.1);
}
.footer .language-wrapper {
  position: relative;
  border: 1px solid #D9D9D9;
  min-width: 260px;
  display: flex;
  align-items: center;
  min-height: 48px;
  height: 48px;
  transition: border-color var(--transition);
}
.footer .language-wrapper:hover {
  border-color: var(--color-black);
}
.footer .language-wrapper:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url("../../assets/images/globe.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 15px;
}
.footer .language-wrapper:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("../../assets/images/arrow-down-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  top: 55%;
  transform: translateY(-50%);
}
.footer .language {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  color: var(--color-black);
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 10px 35px 10px 50px;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.footer .language:focus {
  outline: none;
}
.footer .copyright {
  font-size: 14px;
  line-height: 1.1;
}
@media (min-width: 480px) {
  .footer .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 50px 30px;
  }
}
@media (min-width: 768px) {
  .footer {
    padding-block: 80px 50px;
  }
  .footer .text {
    max-width: calc(100% - 60px);
  }
  .footer .newsletter {
    margin-top: 50px;
    background-size: auto 100%;
    background-position: 0 50%;
  }
  .footer .wrapper {
    grid-column: 2/3;
  }
  .footer .bottom {
    grid-template-columns: auto minmax(auto, 280px) minmax(100px, 1fr);
    gap: 60px;
    margin-top: 100px;
  }
  .footer .social {
    justify-content: flex-end;
  }
}
@media (min-width: 1280px) {
  .footer .grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 90px 30px;
  }
  .footer .newsletter {
    margin-top: 100px;
    background-size: auto 110%;
  }
}

.navigation {
  --box-shadow: 2px 7px 10px rgba(0,0,0,0.1);
  padding: 20px 0;
  z-index: var(--z-index-navigation);
  background-color: var(--color-white);
  position: relative;
}
.navigation--sticky {
  border-bottom: 6px solid var(--color-blue);
  position: sticky;
  top: 0;
}
.navigation .mobile-toggle {
  position: relative;
  z-index: var(--z-index-navigation);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 10px;
  width: 30px;
  height: 30px;
  position: relative;
  justify-self: end;
}
.navigation .mobile-toggle .line {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-black);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.navigation .mobile-toggle .line--1 {
  top: 20%;
}
.navigation .mobile-toggle .line--2 {
  top: 50%;
  transform: translateY(-50%);
}
.navigation .mobile-toggle .line--3 {
  bottom: 20%;
}
.navigation .mobile-toggle.active .line--1 {
  top: 50%;
  transform: rotate(45deg);
}
.navigation .mobile-toggle.active .line--2 {
  opacity: 0;
}
.navigation .mobile-toggle.active .line--3 {
  bottom: auto;
  top: 50%;
  transform: rotate(-45deg);
}
.navigation .mobile-toggle img {
  display: none;
}
.navigation .grid {
  display: grid;
  grid-template-columns: 1fr 50px;
  align-items: center;
  gap: 10px;
}
.navigation .menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-white);
  padding: 100px 0 20px 0;
  opacity: 0;
  transform: translateX(-100%);
  pointer-events: none;
  transition: all 0.3s ease;
}
.navigation .menu-wrapper.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.navigation .button {
  z-index: var(--z-index-navigation);
  padding-block: 3px;
}
.navigation .item.active > .link {
  height: auto;
}
.navigation .item.active > .menu--sub {
  position: relative;
  top: inherit;
  left: inherit;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  box-shadow: none;
  border-bottom: none;
  width: 100%;
}
.navigation .menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}
.navigation .menu > .item {
  display: inline-block;
  position: relative;
}
@media (min-width: 1280px) and (hover: hover) {
  .navigation .menu > .item:hover > .menu--sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.navigation .menu .link {
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  height: 100%;
  width: 100%;
  padding-block: 10px;
  transition: color 0.3s ease;
  position: relative;
}
.navigation .menu .link:hover {
  color: rgba(var(--color-black-rgb), 0.5);
}
.navigation .menu .link:has(+ .menu--sub) {
  padding-right: 20px;
}
.navigation .menu .link:has(+ .menu--sub):after {
  content: "";
  position: absolute;
  bottom: 50%;
  right: 0;
  transform: translateY(50%);
  background-image: url("../../assets/images/arrow-down-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 10px;
  height: 10px;
}
.navigation .menu--main .link {
  font-weight: 600;
  position: relative;
}
.navigation .menu--main .menu--sub .link {
  font-weight: 400;
}
.navigation .menu--main:not(:has(.menu--sub)) .link {
  font-weight: 400;
}
.navigation .menu--sub {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  min-width: 200px;
  max-width: 360px;
  width: max-content;
  background: white;
  box-shadow: var(--box-shadow);
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 6px solid var(--color-blue);
}
.navigation .menu--sub > .item {
  padding-inline: 20px;
  width: 100%;
  display: block;
}
.navigation .menu--sub.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navigation .logo {
  z-index: var(--z-index-navigation);
  width: 100%;
}
.navigation .language-switcher {
  display: none;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 10px;
  background: white;
  cursor: pointer;
}
@media (min-width: 1280px) and (hover: hover) {
  .navigation .language-switcher:hover .languages {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.navigation .language-switcher .languages {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  padding-block: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}
.navigation .language-switcher .languages.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navigation .language-switcher .language {
  font-size: 16px;
  color: var(--color-black);
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.3s, color 0.3s ease;
}
.navigation .language-switcher .language:hover {
  color: var(--color-blue);
  transform: translateY(-1px);
}
.navigation .language-switcher--mobile {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 768px) {
  .navigation .container {
    padding-inline: 30px;
  }
}
@media (min-width: 1280px) {
  .navigation .mobile-toggle {
    display: none;
  }
  .navigation .menu--sub {
    transition: all 0.3s ease-in-out;
  }
  .navigation .grid {
    display: grid;
    grid-template-columns: 145px 1fr 50px;
    gap: 30px;
  }
  .navigation .menu-wrapper {
    display: grid;
    grid-template-columns: minmax(auto, 1fr) auto auto;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: var(--z-index-navigation);
    height: auto;
    width: 100%;
    padding: 0;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    top: inherit;
    left: inherit;
  }
  .navigation .menu {
    flex-direction: row;
    gap: 20px;
  }
  .navigation .menu--sub {
    flex-direction: column;
  }
  .navigation .language-switcher {
    display: flex;
  }
  .navigation .language-switcher--mobile {
    display: none;
  }
  .navigation .language-switcher .languages {
    transform: translateY(-10px);
    gap: 16px;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    padding: 32px 20px 26px 20px;
    box-shadow: var(--box-shadow);
    border-bottom: 6px solid var(--color-blue);
    opacity: 1;
    transform: translateY(-10px);
    z-index: var(--z-index-navigation-languages);
  }
}
@media (min-width: 1480px) {
  .navigation .grid {
    grid-template-columns: 215px 1fr 50px;
  }
  .navigation .menu {
    gap: 40px;
  }
  .navigation .menu--sub {
    gap: 0;
  }
}
@media (max-width: 1279px) {
  .navigation .menu-wrapper > * {
    position: relative;
    max-width: calc(var(--container) + 2 * var(--container-padding));
    margin: 0 auto;
    padding-inline: 30px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .navigation .menu-wrapper > * {
    padding-inline: var(--container-padding);
  }
}