@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, navigation, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

div {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #ffffff;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

li {
  list-style-type: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: normal;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

:root {
  --width: calc(100svw - 100px);
  --tablet-width: calc(100svw - 100px);
  --mobile-width: calc(100svw - 20px);
  --sidepadding: 100px;
}

@media (max-width: 1024px) {
  :root {
    --width: var(--tablet-width);
    --sidepadding: 50px;
  }
}
@media (max-width: 650px) {
  :root {
    --width: var(--mobile-width);
    --sidepadding: 20px;
  }
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  background-color: #E3E3E3;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 22px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-chars: 6 4 4;
  -webkit-hyphenate-limit-before: 4;
  -webkit-hyphenate-limit-after: 4;
}

strong {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
}

html.is-transition-enabled body {
  transition: opacity 700ms cubic-bezier(0.25, 0.8, 0.25, 1), filter 700ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

html.is-transition-enabled.is-transition-out body {
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
}

html.is-transition-enabled.is-transition-in body {
  opacity: 1;
  filter: none;
}

html.has-scroll-reveal .scroll-reveal {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(14px);
  transition: opacity var(--scroll-reveal-duration, 900ms) var(--scroll-reveal-ease, cubic-bezier(0.25, 0.8, 0.25, 1)), transform var(--scroll-reveal-duration, 900ms) var(--scroll-reveal-ease, cubic-bezier(0.25, 0.8, 0.25, 1)), filter var(--scroll-reveal-duration, 900ms) var(--scroll-reveal-ease, cubic-bezier(0.25, 0.8, 0.25, 1));
  transition-delay: var(--scroll-reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
html.has-scroll-reveal .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html.is-transition-enabled body {
    transition: none;
  }
  html.has-scroll-reveal .scroll-reveal,
  html.has-scroll-reveal .scroll-reveal.is-visible {
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}
.topbar {
  position: fixed;
  width: 100svw;
  padding: var(--tb-padY, 32px) var(--tb-padX, var(--sidepadding));
  z-index: 2;
}
@media (max-width: 650px) {
  .topbar {
    width: 100svw !important;
    padding: 30px 20px;
  }
}
.topbar__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  flex-wrap: nowrap;
  background-color: #E3E3E3;
  padding: 0 calc(var(--tb-inner-padX) / 2) 0 var(--tb-inner-padX);
  border-radius: 10px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.topbar__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  width: 65px;
  height: 60px;
}
.topbar__navi {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 5px;
}
@media (max-width: 1050px) {
  .topbar__navi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(30, 65, 78, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 20px 40px;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    z-index: 9;
  }
  .topbar__navi.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.topbar__menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 20px;
  position: relative;
  border-radius: 10px;
  padding: 10px 5px;
}
@media (max-width: 1050px) {
  .topbar__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    width: 100%;
  }
}
.topbar__menu-item {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 1050px) {
  .topbar__menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(227, 227, 227, 0.1);
    flex-direction: column;
    align-items: stretch;
  }
  .topbar__menu-item--has-submenu .topbar__submenu {
    display: none;
  }
  .topbar__menu-item--has-submenu.is-open .topbar__submenu {
    display: grid;
  }
}
.topbar__menu-link {
  position: relative;
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  color: #1E414E;
  text-transform: lowercase;
  transition: all ease-in-out 0.2s;
  z-index: 1;
  transform: scale(1);
}
.topbar__menu-link:hover, .topbar__menu-link:focus-visible {
  transform: scale(0.95);
}
@media (max-width: 1050px) {
  .topbar__menu-link {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
    color: #E3E3E3;
    padding: 16px 20px;
    width: 100%;
    text-transform: none;
  }
  .topbar__menu-link:hover, .topbar__menu-link:focus-visible {
    transform: scale(1);
    background: rgba(227, 227, 227, 0.1);
  }
  .topbar__menu-link.is-active {
    background: rgba(160, 210, 43, 0.2);
  }
}
.topbar__sm {
  background: #1E414E;
  border-radius: 10px;
  padding: 8px 12px 6px;
  display: none;
}
.topbar__cta {
  background: #A0D22B;
  color: #1E414E;
  border-radius: 10px;
  padding: 5px 10px;
  margin-left: 10px;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  transform: scale(1);
  transition: all ease-in-out 0.2s;
}
.topbar__cta:hover {
  color: #A0D22B;
  background: #1E414E;
  transform: scale(1.1);
}
@media (max-width: 1050px) {
  .topbar__cta {
    display: none;
  }
}
.topbar__burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 1050px) {
  .topbar__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}
.topbar__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #1E414E;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.topbar__burger.is-open .topbar__burger-line {
  background: #E3E3E3;
}
.topbar__burger.is-open .topbar__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.topbar__burger.is-open .topbar__burger-line:nth-child(2) {
  opacity: 0;
}
.topbar__burger.is-open .topbar__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.topbar__menu-item--has-submenu.is-open .topbar__submenu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
  visibility: visible;
}
@media (max-width: 1050px) {
  .topbar__menu-item--has-submenu.is-open .topbar__submenu {
    display: grid;
    opacity: 1;
    transform: none;
  }
}

.topbar__submenu {
  position: absolute;
  top: calc(100% + 30px);
  left: 50%;
  min-width: clamp(360px, 50vw, 720px);
  max-width: min(760px, 100vw - 40px);
  background: rgba(227, 227, 227, 0.98);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(17, 22, 26, 0.16);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  backdrop-filter: blur(6px);
}
.topbar__submenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .topbar__submenu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: clamp(320px, 45vw, 520px);
  }
}
@media (max-width: 1050px) {
  .topbar__submenu {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    padding: 12px 0 12px 20px;
    gap: 8px;
    grid-template-columns: 1fr;
    background: transparent;
    backdrop-filter: none;
    min-width: auto;
    max-width: 100%;
  }
}

.topbar__submenu-link {
  position: relative;
  display: grid;
  gap: 4px;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(30, 65, 78, 0.04);
  transition: background-color 150ms ease, transform 150ms ease;
  overflow: hidden;
  min-height: 80px;
}
.topbar__submenu-link:hover, .topbar__submenu-link:focus-visible {
  background: rgba(30, 65, 78, 0.12);
  transform: translateX(2px);
}
.topbar__submenu-link:hover .topbar__submenu-bg video,
.topbar__submenu-link:hover .topbar__submenu-bg img, .topbar__submenu-link:focus-visible .topbar__submenu-bg video,
.topbar__submenu-link:focus-visible .topbar__submenu-bg img {
  transform: scale(1.05);
}
.topbar__submenu-link.is-active {
  background: rgba(160, 210, 43, 0.18);
  transform: translateX(0);
  box-shadow: inset 0 0 0 1px rgba(160, 210, 43, 0.4);
}
@media (max-width: 1050px) {
  .topbar__submenu-link {
    background: rgba(227, 227, 227, 0.05);
    min-height: 60px;
    padding: 10px 16px;
    border-radius: 8px;
  }
  .topbar__submenu-link:hover, .topbar__submenu-link:focus-visible {
    background: rgba(227, 227, 227, 0.1);
    transform: translateX(0);
  }
  .topbar__submenu-link.is-active {
    background: rgba(160, 210, 43, 0.15);
  }
}

.topbar__submenu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.topbar__submenu-bg video,
.topbar__submenu-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.topbar__submenu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 65, 78, 0.85) 0%, rgba(30, 65, 78, 0.75) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
}
.topbar__submenu-link:hover .topbar__submenu-overlay, .topbar__submenu-link:focus-visible .topbar__submenu-overlay {
  background: linear-gradient(135deg, rgba(30, 65, 78, 0.75) 0%, rgba(30, 65, 78, 0.65) 100%);
}
.topbar__submenu-link.is-active .topbar__submenu-overlay {
  background: linear-gradient(135deg, rgba(160, 210, 43, 0.75) 0%, rgba(160, 210, 43, 0.65) 100%);
}

.topbar__submenu-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.topbar__submenu-name {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  color: #E3E3E3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.topbar__submenu-link:not(:has(.topbar__submenu-bg)) .topbar__submenu-name {
  color: #1E414E;
  text-shadow: none;
}

.topbar__submenu-desc {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  color: rgba(227, 227, 227, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.topbar__submenu-link:not(:has(.topbar__submenu-bg)) .topbar__submenu-desc {
  color: rgba(30, 65, 78, 0.6);
  text-shadow: none;
}

.nav-underline {
  position: absolute;
  left: 0;
  bottom: 5px;
  height: 2px;
  width: 0;
  background: #A0D22B;
  border-radius: 2px;
  pointer-events: none;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), width 220ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 120ms linear;
  opacity: 0;
  transform: translateX(0);
  z-index: 0;
}
@media (max-width: 1050px) {
  .nav-underline {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-underline {
    transition: none;
  }
}
.breadcrumb {
  margin-top: 80px;
  width: 100svw;
  padding: 20px calc(var(--sidepadding) + 10px) 0;
  box-sizing: border-box;
}
.breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  color: rgba(34, 42, 49, 0.6);
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: rgba(34, 42, 49, 0.4);
}
.breadcrumb__item a {
  color: rgba(34, 42, 49, 0.65);
  text-decoration: none;
}
.breadcrumb__item a:hover {
  color: #1E414E;
}
.breadcrumb__item span {
  color: #1E414E;
  font-weight: 600;
}
@media (max-width: 650px) {
  .breadcrumb {
    padding: 16px calc(var(--sidepadding));
  }
  .breadcrumb__list {
    gap: 6px;
    font-family: "Raleway", sans-serif;
    font-family: "GeistMono", monospace;
    font-weight: 300;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
  }
}

.hero-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  height: calc(100svh + 320px);
  width: 100svw;
}
@media (max-width: 650px) {
  .hero-wrapper {
    height: 50svh !important;
  }
}

.hero {
  position: relative;
  width: 100svw;
  max-width: calc(100svw - 20px);
  position: sticky;
  top: var(--hero-top, 0px);
  width: var(--hero-width, calc(100svw - 20px));
  height: var(--hero-height, calc(100svh - 20px));
  padding: 0 var(--hero-padX, 0);
  transform-origin: top center;
  transition: none;
}
@media (max-width: 650px) {
  .hero {
    height: 50svh;
    max-width: 100svw;
  }
}
.hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 20px;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 60px calc(var(--sidepadding) / 4);
  border-radius: 14px;
  box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 0;
  transition: opacity 700ms ease;
  will-change: opacity;
  z-index: 0;
  pointer-events: none;
}
.hero__slide .button__text {
  margin-bottom: -5px;
  padding: 3px;
}
@media (max-width: 1024px) {
  .hero__slide {
    padding: 60px var(--sidepadding);
  }
}
@media (max-width: 650px) {
  .hero__slide {
    padding: 30px var(--sidepadding);
  }
}
.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero__slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 75%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(34, 42, 49, 0) 0%, #222A31 74.52%);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 650px) {
  .hero__slide::after {
    height: 100%;
    background: linear-gradient(180deg, rgba(34, 42, 49, 0.25) 0%, #222A31 40%);
  }
}
.hero__slide-img {
  z-index: -1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 900ms ease, filter 900ms ease;
  will-change: opacity, filter;
  pointer-events: none;
}
.hero__slide-img video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero__slide.is-active .hero__slide-img {
  opacity: 1;
  filter: blur(0);
}
.hero__slide-toptext {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 34px;
  color: #A0D22B;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
}
@media (max-width: 650px) {
  .hero__slide-toptext {
    font-family: "Raleway", sans-serif;
    font-family: "GeistMono", monospace;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    line-height: 26px;
  }
}
.hero__slide-headline {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 55px;
  line-height: 60px;
  line-height: 1.1;
  color: #E3E3E3;
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero__slide-headline {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 44px;
    line-height: 1.1;
  }
}
@media (max-width: 768px) {
  .hero__slide-headline {
    font-size: 32px;
    line-height: 1.1;
  }
}
@media (max-width: 650px) {
  .hero__slide-headline {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    line-height: 32px;
    line-height: 1.15;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: flex-start;
  }
}
.hero__slide-headline p {
  width: 100%;
  max-width: 750px;
  min-width: 0;
}
.hero__slide-headline .button {
  margin-bottom: 5px;
  align-items: center;
}
.hero__slide-headline .button .button__text {
  display: inline-block;
  line-height: 1;
  padding-top: 2px;
}
.hero__slide-marker {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 5px;
  position: absolute;
  left: calc(var(--sidepadding) / 4);
  bottom: 30px;
  z-index: 3;
}
@media (max-width: 1024px) {
  .hero__slide-marker {
    left: var(--sidepadding);
  }
}
@media (max-width: 650px) {
  .hero__slide-marker {
    bottom: 15px;
  }
}
.hero__slide-line {
  --line-width: 30px;
  --line-height: 3px;
  width: var(--line-width);
  height: 16px;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: width 250ms ease;
}
.hero__slide-line:focus-visible {
  outline: 2px solid rgba(160, 210, 43, 0.7);
  outline-offset: 2px;
}
.hero__slide-line::after {
  content: "";
  width: 100%;
  height: var(--line-height);
  background-color: #E3E3E3;
  border-radius: 999px;
  transition: width 250ms ease, background-color 250ms ease, height 250ms ease;
  display: block;
}
.hero__slide-line.is-active {
  --line-width: 85px;
}
.hero__slide-line.is-active::after {
  background-color: #A0D22B;
  height: 4px;
}

.hero [data-rotator] {
  display: inline;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  letter-spacing: 0;
  font-variant-ligatures: none;
}

.hero__pin-spacer {
  height: 0;
  pointer-events: none;
}

.hero .char-col {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  overflow: hidden;
  height: 1em;
  line-height: 1em;
  white-space: nowrap;
}

.hero .char-col.is-space {
  display: inline;
  height: auto;
  overflow: visible;
  white-space: normal;
  width: auto;
  min-width: 0;
}

.hero .char-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  will-change: transform;
  transform: translateY(0);
  transition: transform var(--slot-dur, 0.8s) cubic-bezier(0.77, 0, 0.175, 1);
}

.hero .char-track > span {
  display: block;
  height: 1em;
  line-height: 1em;
}

.hero [data-rotator] {
  display: inline;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  letter-spacing: 0;
  font-variant-ligatures: none;
}

.hero .char-col {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  overflow: hidden;
  height: 1em;
  line-height: 1em;
  white-space: nowrap;
  break-inside: avoid;
}

.hero .char-col.is-space {
  display: inline;
  white-space: normal;
  width: auto;
  min-width: 0;
}

.hero__slide-headline p {
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  min-width: 0;
  max-width: 600px;
}

.hero .char-word {
  display: inline-block;
  white-space: nowrap;
  vertical-align: baseline;
}

.hero__slide:not(.is-active) [data-role=toptext],
.hero__slide:not(.is-active) [data-role=headline],
.hero__slide:not(.is-active) [data-role=cta] .button__text {
  visibility: hidden;
}

.hero [data-reveal] {
  display: inline;
}

.hero .reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  margin-right: 0.25ch;
}

.hero .reveal-word > span {
  display: inline-block;
  will-change: transform;
}

.button {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  position: relative;
  flex-wrap: nowrap;
  padding: 12px 53px 12px 15px;
  gap: 15px;
  width: fit-content;
  background-color: #E3E3E3;
  box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  transition: all ease-in-out 0.1s;
}
.button__text {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  width: 100%;
  color: #1E414E;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all ease-in-out 0.2s;
  margin-bottom: -1px;
}
.button__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: #1E414E;
  border-radius: 7px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  transition: all ease-in-out 0.2s;
  left: calc(100% - 40px);
}
.button__icon::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.74646 6.25354H18.2465' stroke='%23A0D22B' stroke-linecap='round'/%3E%3Cpath d='M6.93628 17.5637L17.5429 6.95712' stroke='%23A0D22B' stroke-linecap='round'/%3E%3Cpath d='M18.25 18.7501V6.25006' stroke='%23A0D22B' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-size: contain;
  height: 25px;
  width: 25px;
  display: block;
  transition: all ease-in-out 0.1s;
  transform: rotate(0);
}
.button:hover {
  padding: 12px 15px 12px 53px;
  background-color: #1E414E;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.button:hover .button__text {
  color: #A0D22B;
}
.button:hover .button__icon {
  left: 6px;
  background-color: #A0D22B;
}
.button:hover .button__icon::after {
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.74646 6.25354H18.2465' stroke='%231E414E' stroke-linecap='round'/%3E%3Cpath d='M6.93628 17.5637L17.5429 6.95712' stroke='%231E414E' stroke-linecap='round'/%3E%3Cpath d='M18.25 18.7501V6.25006' stroke='%231E414E' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  transform: rotate(45deg);
}
.button:hover .button__img {
  transform: rotate(45deg);
}
.button--simple {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.button--simple .button__icon {
  left: 0;
}
.button--simple:hover {
  padding: 0;
}
.button--simple:hover .button__icon {
  left: 0;
}
.button--text {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  color: #1E414E;
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  transform: scale(1);
  transition: all ease-in-out 0.2s;
  z-index: 2;
}
.button--text svg {
  margin-left: -10px;
  transition: all ease-in-out 0.2s;
}
.button--text svg .line {
  stroke: #E3E3E3;
  transition: all ease-in-out 0.2s;
}
.button--text:hover {
  color: #A0D22B;
  transform: scale(1);
}
.button--text:hover svg {
  margin-left: 0px;
}
.button--text:hover svg .line, .button--text:hover svg path {
  stroke: #1E414E;
}

.detail-panel__button {
  border: 0.5px solid #E3E3E3 !important;
}

.modal__body .button {
  border: 0.5px solid #E3E3E3 !important;
}

.section {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  width: 100svw;
  padding: 40px calc(var(--sidepadding) + 10px);
  margin-top: 100px;
  box-sizing: border-box;
  overflow: hidden;
}
.section__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  width: 100%;
}
.section__inner--narrow {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  gap: 20px;
}
.section__left, .section__right {
  width: calc(50% - 10px);
}
@media (max-width: 650px) {
  .section__left, .section__right {
    width: 100%;
  }
}
.section__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 70px;
  line-height: 60px;
  padding-bottom: 20px;
}
.section__title span {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 50px;
  line-height: 50px;
  display: block;
  padding-bottom: 10px;
}
.section__title h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 30px;
  line-height: 30px;
}
.section--service .section__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
}
.section--service .section__left {
  width: calc(41.6666666667% - 10px);
}
@media (max-width: 650px) {
  .section--service .section__left {
    width: 100%;
    padding-bottom: 40px;
  }
}
.section--service .section__left .button {
  margin-top: 20px;
}
.section--service .section__right {
  width: calc(58.3333333333% - 10px);
}
@media (max-width: 650px) {
  .section--service .section__right {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .section--service {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: center;
    padding: 0 var(--sidepadding) 40px;
  }
}
.section--partner {
  background: radial-gradient(62.12% 62.12% at 50% 50%, #136989 0%, #222A31 97.47%);
  overflow: hidden;
  padding: 100px calc(var(--sidepadding) + 10px);
  margin-top: 0;
}
.section--partner .section__title {
  color: #E3E3E3;
}
.section--highlight {
  background: #D9D9D9;
  overflow: hidden;
  padding: 60px calc(var(--sidepadding) + 10px);
}
.section--highlight + .section {
  margin-top: 60px;
}
.header + .section {
  margin-top: 0;
}
.header + .section--highlight {
  margin-top: 80px;
}
.section--image {
  margin: 0;
}
.section--image img {
  width: 100%;
  border-radius: 14px;
}
.section--image + .section--detail {
  margin-top: 0;
  padding-top: 5px;
}

.header--careers {
  padding: clamp(80px, 12vw, 140px) calc(var(--sidepadding) + 10px) clamp(60px, 10vw, 100px);
}
.header--careers .header__inner--career {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: clamp(20px, 3vw, 30px);
}

.career-hero {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  color: #E3E3E3;
}
.career-hero .label {
  width: fit-content;
}
.career-hero__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 60px;
  line-height: 60px;
}
.career-hero__subtitle {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  max-width: 720px;
  color: #E3E3E3;
}
.career-hero__subtitle p + p {
  margin-top: 12px;
}
.career-hero__cta {
  width: fit-content;
}

.careers-intro {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  color: rgba(34, 42, 49, 0.75);
  display: grid;
  gap: 18px;
}

.section--careers-list {
  padding: clamp(60px, 8vw, 90px) calc(var(--sidepadding) + 10px);
  background: linear-gradient(135deg, rgba(227, 227, 227, 0.92) 0%, rgba(30, 65, 78, 0.05) 100%);
  margin-top: 0 !important;
  margin-bottom: -100px;
}

.careers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 38px);
  justify-content: center;
}

.career-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
  padding: clamp(28px, 4vw, 36px);
  border-radius: 28px;
  border: 1px solid rgba(34, 42, 49, 0.08);
  background: #E3E3E3;
  box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #222A31;
  flex: 1 1 clamp(280px, 26vw, 300px);
  min-width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.career-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(34, 42, 49, 0.55);
}
.career-card__tag {
  font-weight: 600;
  font-size: 10px;
}
.career-card__badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(30, 65, 78, 0.1);
  color: #1E414E;
  font-size: 10px;
}
.career-card__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 32px;
  color: #222A31;
}
.career-card__summary {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  color: rgba(34, 42, 49, 0.7);
}
.career-card__tasks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 18px;
  list-style: disc;
  color: rgba(34, 42, 49, 0.72);
}
.career-card__tasks li {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
}
.career-card__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.career-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(34, 42, 49, 0.6);
}
.career-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1E414E;
}
.career-card__cta svg {
  transition: transform 0.2s ease;
}
.career-card:hover .career-card__cta {
  color: #A0D22B;
}
.career-card:hover .career-card__cta svg {
  transform: translateX(4px);
}
.career-card:hover .career-card__cta svg path,
.career-card:hover .career-card__cta svg .line {
  stroke: #A0D22B;
}

.careers-empty {
  text-align: center;
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
}
.careers-empty a {
  color: #1E414E;
  text-decoration: underline;
}

.detail--career .header--career {
  background: linear-gradient(135deg, rgba(30, 65, 78, 0.12) 0%, rgba(227, 227, 227, 0.96) 100%);
  padding-bottom: 50px;
  margin-top: 20px;
}

.header__inner--career {
  margin: 0 auto;
  padding: clamp(60px, 10vw, 90px) calc(var(--sidepadding) + 10px);
  overflow: visible !important;
}

.detail-hero--career {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  align-items: start;
  color: #222A31;
  max-width: 100% !important;
}

.detail-hero__badge-group {
  grid-column: 1/-1;
}

.career-hero__summary {
  grid-column: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  color: rgba(34, 42, 49, 0.75);
}
.career-hero__summary p + p {
  margin-top: 12px;
}

.career-hero__facts {
  grid-column: 2;
  grid-row: 2/span 2;
  display: flex;
  flex-direction: row;
  gap: 14px;
  padding: 18px 24px;
  margin: 0;
  list-style: none;
  background: rgba(227, 227, 227, 0.6);
  border-radius: 18px;
  min-width: 0;
}
.career-hero__facts li {
  display: grid;
  gap: 4px;
}

.detail-hero__title,
.detail-hero__summary,
.detail-hero__cta {
  grid-column: 1;
}

.career-hero__fact-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(34, 42, 49, 0.6);
}

.career-section {
  padding: clamp(50px, 8vw, 80px) calc(var(--sidepadding) + 10px);
  background: #D9D9D9;
}
.career-section--body, .career-section--split, .career-section--process, .career-section--contact {
  background: transparent;
  margin-bottom: -100px;
}
.career-section--split, .career-section--process, .career-section--contact {
  margin-top: 0;
}
.career-section--benefits {
  background: linear-gradient(251deg, #136989 0%, #222A31 97.47%);
}
.career-section--benefits .career-section__kicker {
  color: #D9D9D9;
}
.career-section--benefits h2 {
  color: #E3E3E3;
}
.career-section__inner {
  display: grid;
  gap: clamp(24px, 4vw, 36px);
}
.career-section--contact .career-section__inner {
  display: flex;
  justify-content: center;
}
.career-section__head {
  display: grid;
  gap: 8px;
}
.career-section__kicker {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(34, 42, 49, 0.6);
}

.career-richtext {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  color: rgba(34, 42, 49, 0.78);
  display: grid;
  gap: 18px;
}
.career-richtext p + p {
  margin-top: 12px;
}

.career-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.career-list li {
  position: relative;
  padding-left: 32px;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  color: rgba(34, 42, 49, 0.78);
}
.career-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' stroke='black' stroke-width='2' fill='none'/%3E%3Ccircle cx='12' cy='12' r='3' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
  background-color: #A0D22B;
  opacity: 0.8;
}
.career-list--compact li {
  font-size: 16px;
  line-height: 24px;
  padding-left: 28px;
}
.career-list--compact li::before {
  top: 4px;
  width: 14px;
  height: 14px;
  background: #A0D22B;
}

.career-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 28px);
}

.career-benefit {
  padding: clamp(20px, 3vw, 28px);
  border-radius: 20px;
  background: rgba(227, 227, 227, 0.85);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  flex: 1 1 calc(33.333% - 20px);
  min-width: 200px;
}
.career-benefit h3 {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #222A31;
}

.career-process {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: career-step;
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}
.career-process__item {
  counter-increment: career-step;
  padding-left: 56px;
  position: relative;
}
.career-process__item h3 {
  margin: 0 0 6px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
.career-process__item p {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: rgba(34, 42, 49, 0.75);
}
.career-process__item::before {
  content: counter(career-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #1e414e;
  color: #A0D22B;
  display: grid;
  place-items: center;
  font-family: "GeistMono", monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.career-contact {
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(30, 65, 78, 0.08) 0%, rgba(227, 227, 227, 0.95) 100%);
  box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  padding: clamp(24px, 5vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
  justify-content: space-between;
}
.career-contact__body {
  display: grid;
  gap: 12px;
}
.career-contact__body h2 {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 30px;
}
.career-contact__body p {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  color: rgba(34, 42, 49, 0.72);
}
.career-contact__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.career-contact__body ul a {
  color: #1E414E;
}

@media (max-width: 1024px) {
  .career-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
  .detail-hero--career {
    grid-template-columns: 1fr;
  }
  .career-hero__facts {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 1050px) {
  .career-benefits {
    flex-direction: column;
  }
  .career-benefit {
    flex: 1 1 100%;
  }
}
@media (max-width: 650px) {
  .career-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .career-hero__facts {
    gap: 12px;
    padding: 16px;
    flex-direction: column;
  }
  .career-benefits {
    flex-direction: column;
  }
  .career-benefit {
    flex: 1 1 100%;
  }
}
.contact {
  width: 100%;
  background: #E3E3E3;
}
.contact__hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  padding: 120px var(--sidepadding) 80px;
  background: linear-gradient(135deg, rgba(30, 65, 78, 0.05) 0%, rgba(30, 65, 78, 0.02) 100%);
}
@media (max-width: 650px) {
  .contact__hero {
    padding: 80px var(--sidepadding) 60px;
  }
}
.contact__hero-inner {
  max-width: 1440px;
  width: 100%;
  text-align: center;
}
.contact__headline {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  line-height: 56px;
  color: #1E414E;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .contact__headline {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 650px) {
  .contact__headline {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    line-height: 40px;
  }
}
.contact__intro {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  color: rgba(30, 65, 78, 0.8);
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 650px) {
  .contact__intro {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
  }
}
.contact__offices {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  padding: 80px var(--sidepadding);
  background: #E3E3E3;
}
@media (max-width: 650px) {
  .contact__offices {
    padding: 60px var(--sidepadding);
  }
}
.contact__offices-inner {
  max-width: 1440px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .contact__offices-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.contact__office {
  background: rgba(30, 65, 78, 0.04);
  border-radius: 14px;
  padding: 32px;
  transition: all 200ms ease;
}
.contact__office:hover {
  background: rgba(30, 65, 78, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.contact__office-map {
  margin: -32px -32px 24px -32px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
.contact__office-map iframe {
  display: block;
  width: 100%;
}
.contact__office-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(30, 65, 78, 0.1);
}
.contact__office-name {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 26px;
  color: #1E414E;
  margin-bottom: 4px;
}
.contact__office-city {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: rgba(30, 65, 78, 0.6);
}
.contact__office-address {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact__office-address i, .contact__office-address svg {
  width: 20px;
  height: 20px;
  color: #A0D22B;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__office-address address {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 24px;
  color: #1E414E;
  font-style: normal;
}
.contact__office-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact__office-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 12px;
}
.contact__office-detail i, .contact__office-detail svg {
  width: 18px;
  height: 18px;
  color: #1E414E;
  flex-shrink: 0;
}
.contact__office-detail a {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 22px;
  color: #1E414E;
  text-decoration: none;
  transition: color 150ms ease;
}
.contact__office-detail a:hover {
  color: #A0D22B;
}
.contact__office-parking {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(30, 65, 78, 0.1);
}
.contact__office-parking i, .contact__office-parking svg {
  width: 16px;
  height: 16px;
  color: #A0D22B;
}
.contact__office-parking span {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 13px;
  line-height: 20px;
  color: rgba(30, 65, 78, 0.7);
}
.contact__person {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  padding: 80px var(--sidepadding);
  background: linear-gradient(135deg, rgba(160, 210, 43, 0.06) 0%, rgba(160, 210, 43, 0.02) 100%);
}
@media (max-width: 650px) {
  .contact__person {
    padding: 60px var(--sidepadding);
  }
}
.contact__person-inner {
  max-width: 800px;
  width: 100%;
}
.contact__person-header {
  text-align: center;
  margin-bottom: 40px;
}
.contact__person-header h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
  color: #1E414E;
}
@media (max-width: 650px) {
  .contact__person-header h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 28px;
    line-height: 36px;
  }
}
.contact__person-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 32px;
  background: #E3E3E3;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
@media (max-width: 650px) {
  .contact__person-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
  }
}
.contact__person-image {
  flex-shrink: 0;
}
.contact__person-image img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(160, 210, 43, 0.2);
}
@media (max-width: 650px) {
  .contact__person-image img {
    width: 120px;
    height: 120px;
  }
}
.contact__person-info {
  flex: 1;
}
.contact__person-name {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  color: #1E414E;
  margin-bottom: 4px;
}
@media (max-width: 650px) {
  .contact__person-name {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 28px;
  }
}
.contact__person-position {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: rgba(30, 65, 78, 0.7);
  margin-bottom: 20px;
}
@media (max-width: 650px) {
  .contact__person-position {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
  }
}
.contact__person-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 12px;
}
.contact__person-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 12px;
}
.contact__person-detail i, .contact__person-detail svg {
  width: 20px;
  height: 20px;
  color: #A0D22B;
  flex-shrink: 0;
}
.contact__person-detail a {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #1E414E;
  text-decoration: none;
  transition: color 150ms ease;
}
.contact__person-detail a:hover {
  color: #A0D22B;
}
.contact__form {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  padding: 80px var(--sidepadding);
  background: #E3E3E3;
}
@media (max-width: 650px) {
  .contact__form {
    padding: 60px var(--sidepadding);
  }
}
.contact__form-inner {
  max-width: 800px;
  width: 100%;
}
.contact__form-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact__form-header h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
  color: #1E414E;
  margin-bottom: 12px;
}
@media (max-width: 650px) {
  .contact__form-header h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 28px;
    line-height: 36px;
  }
}
.contact__form-header p {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: rgba(30, 65, 78, 0.7);
}
.contact__form-form {
  background: rgba(30, 65, 78, 0.03);
  border-radius: 14px;
  padding: 40px;
  border: 1px solid rgba(30, 65, 78, 0.1);
}
@media (max-width: 650px) {
  .contact__form-form {
    padding: 32px 24px;
  }
}
.contact__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 650px) {
  .contact__form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.contact__form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
@media (max-width: 650px) {
  .contact__form-field {
    margin-bottom: 20px;
  }
}
.contact__form-field:last-of-type {
  margin-bottom: 0;
}
.contact__form-field label {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #1E414E;
}
.contact__form-field input,
.contact__form-field textarea {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(30, 65, 78, 0.2);
  border-radius: 8px;
  background: #E3E3E3;
  color: #1E414E;
  transition: all 200ms ease;
}
.contact__form-field input:focus,
.contact__form-field textarea:focus {
  outline: none;
  border-color: #A0D22B;
  box-shadow: 0 0 0 3px rgba(160, 210, 43, 0.1);
}
.contact__form-field input::placeholder,
.contact__form-field textarea::placeholder {
  color: rgba(30, 65, 78, 0.4);
}
.contact__form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.contact__form-privacy {
  margin-bottom: 32px;
}
.contact__form-privacy label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 12px;
  cursor: pointer;
}
.contact__form-privacy label input[type=checkbox] {
  flex-shrink: 0;
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.contact__form-privacy label span {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  color: rgba(30, 65, 78, 0.8);
}
.contact__form-privacy label span a {
  color: #A0D22B;
  text-decoration: underline;
  transition: color 150ms ease;
}
.contact__form-privacy label span a:hover {
  color: #1E414E;
}
.contact__form-alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 32px;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 24px;
}
.contact__form-alert--success {
  background: rgba(160, 210, 43, 0.1);
  color: rgb(95.4940711462, 125.3359683794, 25.6640316206);
  border: 1px solid rgba(160, 210, 43, 0.3);
}
.contact__form-alert--error {
  background: rgba(220, 38, 38, 0.1);
  color: #991b1b;
  border: 1px solid rgba(220, 38, 38, 0.3);
}
.contact__form-submit {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
}
.contact__form-success-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  padding: 40px;
  background: rgba(30, 65, 78, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(30, 65, 78, 0.1);
}
.contact__form-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  gap: 12px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 40px;
  background: #A0D22B;
  color: #E3E3E3;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms ease;
}
.contact__form-button i, .contact__form-button svg {
  width: 20px;
  height: 20px;
}
.contact__form-button:hover {
  background: rgb(143.8735177866, 188.8339920949, 38.6660079051);
  transform: translateY(-2px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.contact__form-button:active {
  transform: translateY(0);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.modal.is-open .modal__container {
  transform: translateY(0);
  opacity: 1;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 65, 78, 0.8);
  backdrop-filter: blur(4px);
}
.modal__container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: #E3E3E3;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(30, 65, 78, 0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}
@media (max-width: 650px) {
  .modal__container {
    width: 95%;
    max-height: 95vh;
    border-radius: 12px;
  }
}
.modal__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(30, 65, 78, 0.1);
}
@media (max-width: 650px) {
  .modal__header {
    padding: 24px 24px 20px;
  }
}
.modal__title {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  color: #1E414E;
}
@media (max-width: 650px) {
  .modal__title {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 28px;
  }
}
.modal__close {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(30, 65, 78, 0.06);
  border-radius: 50%;
  cursor: pointer;
  transition: all 200ms ease;
  flex-shrink: 0;
}
.modal__close i, .modal__close svg {
  width: 20px;
  height: 20px;
  color: #1E414E;
}
.modal__close:hover {
  background: rgba(30, 65, 78, 0.12);
  transform: rotate(90deg);
}
.modal__body {
  padding: 32px;
}
@media (max-width: 650px) {
  .modal__body {
    padding: 24px;
  }
}
.modal__success {
  text-align: center;
  padding: 20px 0;
}
.modal__success-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(160, 210, 43, 0.15) 0%, rgba(160, 210, 43, 0.05) 100%);
  border-radius: 50%;
}
.modal__success-icon i, .modal__success-icon svg {
  width: 44px;
  height: 44px;
  color: #A0D22B;
}
.modal__success h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  color: #1E414E;
  margin-bottom: 12px;
}
@media (max-width: 650px) {
  .modal__success h3 {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 28px;
  }
}
.modal__success > p {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: rgba(30, 65, 78, 0.8);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 650px) {
  .modal__success > p {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
  }
}
.modal__success .modal__event-info h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #1E414E;
  margin-bottom: 8px;
}
.modal__event-info {
  background: linear-gradient(135deg, rgba(30, 65, 78, 0.06) 0%, rgba(30, 65, 78, 0.02) 100%);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.modal__event-info h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  color: #1E414E;
  margin-bottom: 8px;
}
.modal__event-info-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 8px;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: rgba(30, 65, 78, 0.7);
}
.modal__event-info-date i, .modal__event-info-date svg {
  width: 16px;
  height: 16px;
  color: #A0D22B;
}
.modal__event-info-slot {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 8px;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: rgba(30, 65, 78, 0.8);
  margin-top: 8px;
}
.modal__event-info-slot i, .modal__event-info-slot svg {
  width: 16px;
  height: 16px;
  color: #1E414E;
}
.modal__slots {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__slots li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.modal__slots li strong {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #1E414E;
}
.modal__slots li span {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 13px;
  line-height: 18px;
  color: rgba(30, 65, 78, 0.7);
}
.modal__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 650px) {
  .modal__form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
}
.modal__form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
@media (max-width: 650px) {
  .modal__form-field {
    margin-bottom: 16px;
  }
}
.modal__form-field:last-of-type {
  margin-bottom: 0;
}
.modal__form-field label {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #1E414E;
}
.modal__form-field input,
.modal__form-field textarea,
.modal__form-field select {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(30, 65, 78, 0.2);
  border-radius: 8px;
  background: #E3E3E3;
  color: #1E414E;
  transition: all 200ms ease;
}
.modal__form-field input:focus,
.modal__form-field textarea:focus,
.modal__form-field select:focus {
  outline: none;
  border-color: #A0D22B;
  box-shadow: 0 0 0 3px rgba(160, 210, 43, 0.1);
}
.modal__form-field input::placeholder,
.modal__form-field textarea::placeholder,
.modal__form-field select::placeholder {
  color: rgba(30, 65, 78, 0.4);
}
.modal__form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.modal__form-privacy {
  margin-bottom: 28px;
}
.modal__form-privacy label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 12px;
  cursor: pointer;
}
.modal__form-privacy label input[type=checkbox] {
  flex-shrink: 0;
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.modal__form-privacy label span {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 13px;
  line-height: 20px;
  color: rgba(30, 65, 78, 0.8);
}
.modal__form-privacy label span a {
  color: #A0D22B;
  text-decoration: underline;
  transition: color 150ms ease;
}
.modal__form-privacy label span a:hover {
  color: #1E414E;
}
.modal__form-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 8px;
}
@media (max-width: 650px) {
  .modal__form-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .modal__form-actions .modal__button {
    width: 100%;
  }
}
.modal__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  gap: 10px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  line-height: 22px;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 200ms ease;
}
.modal__button i, .modal__button svg {
  width: 18px;
  height: 18px;
}
.modal__button--primary {
  background: #A0D22B;
  color: #1E414E;
}
.modal__button--primary:hover {
  background: #A0D22B;
  transform: translateY(-2px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.modal__button--primary:active {
  transform: translateY(0);
}
.modal__button--secondary {
  background: rgba(30, 65, 78, 0.08);
  color: #1E414E;
}
.modal__button--secondary:hover {
  background: rgba(30, 65, 78, 0.15);
}

.section--service-teaser {
  position: relative;
  background: #D9D9D9;
  margin-top: clamp(60px, 8vw, 120px);
  padding: clamp(70px, 12vw, 140px) calc(var(--sidepadding) + 10px);
  overflow: hidden;
  isolation: isolate;
}
.section--service-teaser .section__inner {
  width: 100%;
  max-width: 100%;
  display: grid;
  gap: clamp(40px, 6vw, 70px);
  position: relative;
  z-index: 1;
}
.section--service-teaser .service-teaser__head {
  max-width: 880px;
  display: grid;
  gap: 18px;
}
.section--service-teaser .service-teaser__kicker {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(34, 42, 49, 0.55);
}
.section--service-teaser .service-teaser__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 58px;
  line-height: 64px;
  margin: 0;
  color: #222A31;
}
.section--service-teaser .service-teaser__text {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  color: rgba(34, 42, 49, 0.72);
}
.section--service-teaser .service-teaser__text p + p {
  margin-top: 14px;
}
.section--service-teaser .service-teaser__cta {
  margin-top: 12px;
}
.section--service-teaser .service-teaser__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 40px);
  justify-content: center;
  align-items: stretch;
}
.section--service-teaser .service-teaser-card {
  position: relative;
  border-radius: 28px;
  padding: clamp(32px, 5vw, 46px);
  background: rgba(227, 227, 227, 0.96);
  border: 1px solid rgba(34, 42, 49, 0.06);
  box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 clamp(260px, 30vw, 280px);
  min-width: 260px;
  text-decoration: none;
  overflow: hidden;
  color: #222A31;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate;
}
.section--service-teaser .service-teaser-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(140deg, rgba(34, 42, 49, 0.06) 0%, rgba(34, 42, 49, 0.03) 65%, transparent 100%);
  opacity: 0.45;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.section--service-teaser .service-teaser-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: -110px;
  right: -110px;
  background: radial-gradient(circle, rgba(34, 42, 49, 0.1) 0%, transparent 70%);
  opacity: 0.2;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: -1;
}
.section--service-teaser .service-teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.section--service-teaser .service-teaser-card:hover::before {
  opacity: 0.8;
}
.section--service-teaser .service-teaser-card:hover::after {
  opacity: 0.4;
  transform: translate(14px, 8px) scale(1.05);
}
.section--service-teaser .service-teaser-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(34, 42, 49, 0.55);
}
.section--service-teaser .service-teaser-card__index {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(34, 42, 49, 0.06);
  box-shadow: inset 0 0 0 1px rgba(34, 42, 49, 0.04);
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.08em;
  color: #222A31;
  transition: background 0.35s ease;
}
.section--service-teaser .service-teaser-card__index::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(34, 42, 49, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.section--service-teaser .service-teaser-card__label {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(34, 42, 49, 0.45);
}
.section--service-teaser .service-teaser-card__title {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  line-height: 34px;
}
.section--service-teaser .service-teaser-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.section--service-teaser .service-teaser-card__summary {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  color: rgba(34, 42, 49, 0.72);
}
.section--service-teaser .service-teaser-card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  margin-top: auto;
}
.section--service-teaser .service-teaser-card__link svg path {
  stroke: currentColor;
}
.section--service-teaser .service-teaser-card__link svg .line {
  stroke: transparent;
}
.section--service-teaser .service-teaser-card:hover .section--service-teaser .service-teaser-card__index::after {
  opacity: 1;
}
.section--service-teaser .service-teaser-card:hover .section--service-teaser .service-teaser-card__title, .section--service-teaser .service-teaser-card:hover .section--service-teaser .service-teaser-card__link {
  color: #1E414E;
}
.section--service-teaser .service-teaser-card:hover .service-teaser-card__link svg {
  margin-left: 0;
}
.section--service-teaser .service-teaser-card:hover .service-teaser-card__link svg .line {
  stroke: #1E414E;
}
.section--service-teaser .service-teaser-card:hover .service-teaser-card__index, .section--service-teaser .service-teaser-card:hover .service-teaser-card__index::after {
  background: #A0D22B;
}
@media (max-width: 1024px) {
  .section--service-teaser {
    padding: clamp(60px, 10vw, 100px) calc(var(--sidepadding) + 10px);
  }
  .section--service-teaser .service-teaser__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 46px;
    line-height: 52px;
  }
}
@media (max-width: 650px) {
  .section--service-teaser {
    padding: 50px calc(var(--sidepadding));
    margin-top: 60px;
  }
  .section--service-teaser .service-teaser__head {
    gap: 14px;
  }
  .section--service-teaser .service-teaser__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 36px;
    line-height: 40px;
  }
  .section--service-teaser .service-teaser__text {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
  }
  .section--service-teaser .service-teaser-card {
    border-radius: 22px;
    padding: 28px;
  }
}

.tab-box {
  background-color: #D9D9D9;
  box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  padding: 0 20px 20px;
}
.tab-box__tab {
  flex: 1 1 auto;
  padding: 10px;
  background-color: #E3E3E3;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  transition: all ease-in-out 0.2s;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
}
.tab-box__tab:hover, .tab-box__tab.is-active {
  background-color: #1E414E;
  color: #A0D22B;
}
.tab-box__tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px 0;
}
.tab-box__item {
  display: none;
  border-radius: 14px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.tab-box__item.is-active {
  display: block;
}
.tab-box__content {
  width: 100%;
  background: #E3E3E3;
  padding: 20px;
  border-radius: 14px;
}
.tab-box__media {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  background: rgba(34, 42, 49, 0.04);
  display: grid;
  place-items: center;
}
.tab-box__media img,
.tab-box__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.tab-box__text {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
}
.tab-box__text p {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 22px;
  flex: 0 1 auto;
}
.tab-box__text .button {
  margin-bottom: 15px;
  width: 75px;
}

.partner {
  position: relative;
}
.partner__track {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.partner__item {
  box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  overflow: hidden;
}
.partner__item img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.header--products {
  padding: clamp(80px, 12vw, 140px) calc(var(--sidepadding) + 10px) clamp(60px, 10vw, 100px);
}
.header--products .header__inner--product {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: clamp(20px, 3vw, 30px);
}

.products-hero {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  color: #E3E3E3;
  padding: clamp(60px, 10vw, 90px) calc(var(--sidepadding) + 10px);
}
.products-hero .label {
  width: fit-content;
}
.products-hero__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 60px;
  line-height: 60px;
  color: #E3E3E3;
}
.products-hero__subtitle {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  max-width: 720px;
  color: #E3E3E3;
}
.products-hero__subtitle p + p {
  margin-top: 12px;
}

.products__intro {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  color: rgba(34, 42, 49, 0.75);
  display: grid;
  gap: 18px;
}

@media (max-width: 1024px) {
  .header--products {
    padding: clamp(70px, 11vw, 110px) calc(var(--sidepadding) + 6px) clamp(50px, 9vw, 80px);
  }
  .products-hero__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 48px;
    line-height: 54px;
  }
}
@media (max-width: 650px) {
  .header--products {
    padding: clamp(60px, 10vw, 80px) calc(var(--sidepadding)) clamp(40px, 8vw, 60px);
  }
  .products-hero__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 40px;
    line-height: 46px;
  }
  .products-hero__subtitle {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
  }
}
.section--products {
  width: 100svw;
  padding: 80px calc(var(--sidepadding) + 10px);
  box-sizing: border-box;
  margin-top: 0 !important;
}
@media (max-width: 1024px) {
  .section--products {
    padding: 60px calc(var(--sidepadding) + 10px);
  }
}
@media (max-width: 650px) {
  .section--products {
    padding: 40px calc(var(--sidepadding));
  }
}

.products {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.products__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.products__title {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 44px;
  line-height: 50px;
  color: #222A31;
}
@media (max-width: 1024px) {
  .products__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 650px) {
  .products__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 30px;
    line-height: 36px;
  }
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.products__item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  color: #E3E3E3;
  background: #1E414E;
}
@media (max-width: 650px) {
  .products__item {
    padding: 28px;
  }
}
.products__item--azure {
  background: linear-gradient(135deg, #1e5c92, #102b46);
}
.products__item--emerald {
  background: linear-gradient(135deg, #317f3c, #163522);
}
.products__item--amber {
  background: linear-gradient(135deg, #d0771e, #4f2a00);
}
.products__item--plum {
  background: linear-gradient(135deg, #6f2f73, #2d1230);
}
.products__item--slate {
  background: linear-gradient(135deg, #1f2b34, #0f1319);
}
.products__item:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}
.products__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.products__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.products__name {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 32px;
}
.products__description {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  color: rgba(227, 227, 227, 0.9);
}
.products__footer {
  margin-top: auto;
}
.products__media {
  display: none;
}

.products__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.products__background img,
.products__background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(3px);
}
.products__background video {
  filter: saturate(1.05) brightness(0.9) blur(3px);
}

.products__background-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(62.12% 62.12% at 50% 50%, rgba(19, 137, 58, 0.9) 0%, rgba(35, 49, 34, 0.9) 97.47%);
  pointer-events: none;
  opacity: 0.85;
}

.section--products .button--text {
  color: #E3E3E3;
}
.section--products .button--text svg path {
  stroke: #E3E3E3;
}
.section--products .button--text svg .line {
  stroke: transparent;
}
.section--products .button--text:hover {
  color: #A0D22B;
}
.section--products .button--text:hover svg path,
.section--products .button--text:hover svg .line {
  stroke: #A0D22B;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 32;
}

.header--about {
  margin-top: 100px;
}
.header--about .header__inner--product {
  max-width: 1200px;
  border-radius: 32px;
  padding: clamp(70px, 12vw, 140px) calc(var(--sidepadding) + 10px);
  background: linear-gradient(135deg, rgba(30, 65, 78, 0.12) 0%, rgba(30, 65, 78, 0.05) 60%, #E3E3E3 100%);
}
.header--about.has-media .header__inner--product {
  background: transparent;
}
.header--about .detail-hero__content {
  backdrop-filter: blur(2px);
  background: rgba(227, 227, 227, 0.5);
  border-radius: 24px;
}
@media (max-width: 1050px) {
  .header--about {
    margin-top: 80px;
  }
  .header--about .header__inner--product {
    padding: clamp(60px, 10vw, 100px) calc(var(--sidepadding));
    border-radius: 28px;
  }
  .header--about .detail-hero__content {
    border-radius: 20px;
  }
}
@media (max-width: 1024px) {
  .header--about {
    margin-top: 70px;
  }
}
@media (max-width: 650px) {
  .header--about {
    margin-top: 60px;
  }
  .header--about .header__inner--product {
    padding: clamp(50px, 18vw, 80px) calc(var(--sidepadding));
    border-radius: 22px;
  }
  .header--about .detail-hero__content {
    border-radius: 18px;
  }
}

.detail-hero__title--about {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 58px;
  line-height: 64px;
  color: #222A31;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
@media (max-width: 1050px) {
  .detail-hero__title--about {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 46px;
    line-height: 52px;
  }
}
@media (max-width: 1024px) {
  .detail-hero__title--about {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 44px;
    line-height: 50px;
  }
}
@media (max-width: 650px) {
  .detail-hero__title--about {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 32px;
    line-height: 38px;
  }
}

.detail-hero__summary--about {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  color: rgba(34, 42, 49, 0.8);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.detail-hero__summary--about p + p {
  margin-top: 12px;
}
@media (max-width: 1050px) {
  .detail-hero__summary--about {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 27px;
  }
}
@media (max-width: 650px) {
  .detail-hero__summary--about {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
  }
}

.section--mission {
  padding-bottom: 0 !important;
  padding-top: 100px !important;
}
@media (max-width: 1050px) {
  .section--mission {
    padding-top: 70px !important;
  }
}
@media (max-width: 650px) {
  .section--mission {
    padding-top: 50px !important;
  }
}

.section--services {
  background: linear-gradient(120deg, rgba(30, 65, 78, 0.06) 0%, rgba(227, 227, 227, 0.9) 60%);
}
.section--services .detail-columns__primary {
  gap: 20px;
}

.detail-section--values {
  background: rgba(30, 65, 78, 0);
}

.detail-cards--icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 5vw, 40px);
}
@media (max-width: 1050px) {
  .detail-cards--icons {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 4vw, 32px);
  }
}
@media (max-width: 650px) {
  .detail-cards--icons {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.section--stats {
  background: rgba(227, 227, 227, 0.92);
}

.timeline {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
  width: 100%;
}

.timeline__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 40px;
}
@media (max-width: 1050px) {
  .timeline__item {
    gap: 28px;
  }
}
@media (max-width: 650px) {
  .timeline__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.timeline__year {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  color: #A0D22B;
  min-width: 80px;
  flex-shrink: 0;
}
@media (max-width: 1050px) {
  .timeline__year {
    font-family: "Raleway", sans-serif;
    font-family: "GeistMono", monospace;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    line-height: 24px;
    min-width: 70px;
  }
}
@media (max-width: 650px) {
  .timeline__year {
    font-family: "Raleway", sans-serif;
    font-family: "GeistMono", monospace;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    min-width: auto;
  }
}

.timeline__body {
  background: #E3E3E3;
  flex: 1;
  border-radius: 20px;
  padding: clamp(24px, 4vw, 32px);
  box-shadow: 0 20px 36px rgba(17, 22, 26, 0.08);
}
.timeline__body h3 {
  margin: 0 0 12px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 30px;
}
.timeline__body p {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 1050px) {
  .timeline__body {
    padding: clamp(20px, 3.5vw, 28px);
    border-radius: 18px;
  }
  .timeline__body h3 {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 26px;
  }
  .timeline__body p {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 17px;
    line-height: 24px;
  }
}
@media (max-width: 650px) {
  .timeline__body {
    padding: 20px;
    border-radius: 16px;
  }
  .timeline__body h3 {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
  }
  .timeline__body p {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
  }
}

.section--about-partners {
  background: rgba(30, 65, 78, 0.08);
}
.section--about-partners .section__left {
  display: grid;
  gap: 20px;
}
.section--about-partners .section__left .section__title {
  color: #1E414E;
}
.section--about-partners .section__left p {
  color: #1E414E;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
}

.partner-carousel {
  display: grid;
  gap: clamp(16px, 4vw, 28px);
  width: min(420px, 100%);
}
.partner-carousel__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(227, 227, 227, 0.92);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}
.partner-carousel__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 500ms ease;
  display: grid;
  place-items: center;
  background-color: #ffffff;
}
.partner-carousel__item.is-active {
  opacity: 1;
}
.partner-carousel__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(10%);
}
.partner-carousel__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.partner-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(227, 227, 227, 0.5);
  cursor: pointer;
  transition: transform 200ms ease, background-color 200ms ease;
}
.partner-carousel__dot:focus-visible {
  outline: 2px solid rgba(160, 210, 43, 0.8);
  outline-offset: 2px;
}
.partner-carousel__dot.is-active {
  transform: scale(1.2);
  background: #A0D22B;
}

.detail-section--team {
  background: rgba(227, 227, 227, 0.9);
}

.team-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 5vw, 36px);
}
@media (max-width: 1050px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 4vw, 28px);
  }
}
@media (max-width: 650px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.team-card {
  background: #E3E3E3;
  border-radius: 22px;
  box-shadow: 0 20px 32px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.team-card__body {
  padding: clamp(20px, 4vw, 28px);
  display: grid;
  gap: 8px;
}
.team-card__body h3 {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 26px;
}
.team-card__body .team-card__role {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #A0D22B;
}
.team-card__body p {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: rgba(34, 42, 49, 0.75);
}
@media (max-width: 1050px) {
  .team-card {
    border-radius: 20px;
  }
  .team-card img {
    height: 220px;
  }
  .team-card__body {
    padding: clamp(18px, 3.5vw, 24px);
  }
  .team-card__body h3 {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 19px;
    line-height: 25px;
  }
  .team-card__body .team-card__role {
    font-family: "Raleway", sans-serif;
    font-family: "GeistMono", monospace;
    font-weight: 300;
    font-style: normal;
    font-size: 13px;
    line-height: 19px;
  }
  .team-card__body p {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 23px;
  }
}
@media (max-width: 650px) {
  .team-card {
    border-radius: 18px;
  }
  .team-card img {
    height: 200px;
  }
  .team-card__body {
    padding: 20px;
  }
  .team-card__body h3 {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
  }
  .team-card__body .team-card__role {
    font-family: "Raleway", sans-serif;
    font-family: "GeistMono", monospace;
    font-weight: 300;
    font-style: normal;
    font-size: 12px;
    line-height: 18px;
  }
  .team-card__body p {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
  }
}

.news-events {
  position: relative;
  width: 100%;
  opacity: 1;
  --slide-dur: 800ms;
  --slide-ease: cubic-bezier(.22, .61, .36, 1);
}
.news-events--loop {
  --fade: 36px;
  position: relative;
}
.news-events--loop .news-events__item {
  opacity: 1;
  transform: scale(1);
  filter: none;
}
.news-events--loop.is-prep--forward .news-events__item:nth-child(2) {
  opacity: 0;
  transform: scale(0.98);
  filter: blur(0.2px);
}
.news-events--loop.is-prep--backward .news-events__item:first-child {
  opacity: 0;
  transform: scale(0.98);
  filter: blur(0.2px);
}
.news-events--loop.is-animating--forward .news-events__item:first-child {
  opacity: 0;
  transform: scale(0.985);
  filter: blur(0.3px);
}
.news-events--loop.is-animating--forward .news-events__item:nth-child(2) {
  opacity: 1;
  transform: scale(1);
  filter: none;
}
.news-events--loop.is-animating--backward .news-events__item:first-child {
  opacity: 1;
  transform: scale(1);
  filter: none;
}
.news-events--loop.is-animating--backward .news-events__item:nth-child(2) {
  opacity: 0.7;
  transform: scale(0.992);
  filter: blur(0.2px);
}
.news-events__highlight {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 650px) {
  .news-events__highlight {
    margin-bottom: 24px;
  }
}
.news-events__track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 20px;
  padding: 0 10px 40px 20px;
  margin-left: -20px;
  flex-wrap: nowrap;
  scroll-behavior: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.news-events__track::-webkit-scrollbar {
  display: none;
}
.news-events__track {
  opacity: 1;
  transition: all ease-in-out 0.2;
  transform: scale(1);
}
.news-events__track:hover .news-events__item {
  transform: scale(0.98);
  opacity: 0.7;
}
.news-events__track:hover .news-events__item:hover {
  transform: scale(1.02);
  opacity: 1;
}
.news-events__track--nohover {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 0 40px 21px;
  width: 100%;
  width: -webkit-fill-available;
}
.news-events__track--nohover .news-events__item {
  transform: scale(1);
  opacity: 1;
}
.news-events__track--nohover .news-events__item:nth-child(4), .news-events__track--nohover .news-events__item:nth-child(3), .news-events__track--nohover .news-events__item:nth-child(2) {
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media (max-width: 1024px) {
  .news-events__track--nohover .news-events__item {
    width: calc(50% - 10px) !important;
    transform: scale(1) !important;
  }
}
@media (max-width: 650px) {
  .news-events__track--nohover .news-events__item {
    width: 100% !important;
    transform: scale(1) !important;
  }
}
.news-events__track--nohover:hover .news-events__item {
  transform: scale(1);
  opacity: 1;
}
.news-events__track--nohover:hover .news-events__item:hover {
  transform: scale(1);
  opacity: 1;
}
.news-events__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 30px;
  position: relative;
  overflow: hidden;
  width: calc(33.3333333333% - 14px);
  flex: 0 0 auto;
  border-radius: 14px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  background: #E3E3E3;
  will-change: transform, opacity, filter;
  transition: transform var(--slide-dur) var(--slide-ease), opacity var(--slide-dur) var(--slide-ease), filter var(--slide-dur) var(--slide-ease);
  backface-visibility: hidden;
  opacity: 1;
  transform: scale(0.98);
}
.news-events__item:nth-child(4) {
  opacity: 0.1 !important;
  transform: scale(0.85) !important;
}
@media (max-width: 1024px) {
  .news-events__item {
    width: calc(50% - 10px);
  }
  .news-events__item:nth-child(4) {
    opacity: 1 !important;
    transform: scale(0.98) !important;
  }
  .news-events__item:nth-child(3) {
    opacity: 0.1 !important;
    transform: scale(0.85) !important;
  }
}
@media (max-width: 650px) {
  .news-events__item {
    width: 100%;
  }
  .news-events__item:nth-child(3) {
    opacity: 1 !important;
    transform: scale(0.98) !important;
  }
  .news-events__item:nth-child(2) {
    opacity: 0.1 !important;
    transform: scale(0.85) !important;
  }
}
.news-events__item--event {
  width: calc(33.3333333333% - 14px);
  align-items: stretch;
  transform: scale(1);
}
.news-events__item--event:nth-child(4), .news-events__item--event:nth-child(3), .news-events__item--event:nth-child(2) {
  opacity: 1 !important;
  transform: scale(1) !important;
}
.news-events__item--highlight {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: calc(100% + 20px) !important;
  margin-left: -10px;
  flex: 1 1 100%;
  order: initial;
}
.news-events__item--highlight .news-events__image {
  flex: 0 0 48%;
  height: 100%;
  min-height: 100%;
  height: -webkit-fill-available;
}
.news-events__item--highlight .news-events__image img {
  height: 100%;
}
.news-events__item--highlight .news-events__bottom {
  padding: 20px 20px 20px 0;
  gap: 24px;
}
.news-events__item--highlight .news-events__content {
  gap: 16px;
}
.news-events__item--highlight .news-events__label-container {
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  padding: 0;
  margin: 10px 0 20px;
}
.news-events__item--highlight .news-events__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  line-height: 38px;
  -webkit-line-clamp: 3;
}
.news-events__item--highlight .news-events__excerpt {
  color: #222A31;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
}
.news-events__item--highlight .button--text {
  margin-top: auto;
}
@media (max-width: 1024px) {
  .news-events__item--highlight {
    flex-direction: column;
  }
  .news-events__item--highlight .news-events__image {
    flex: 0 0 auto;
    min-height: 280px;
  }
  .news-events__item--highlight .news-events__bottom {
    padding: 24px;
  }
}
@media (max-width: 650px) {
  .news-events__item--highlight .news-events__image {
    min-height: 220px;
  }
  .news-events__item--highlight .news-events__bottom {
    padding: 20px;
  }
  .news-events__item--highlight .news-events__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 26px;
    line-height: 32px;
  }
}
.news-events .news-events__item.is-prep-enter {
  opacity: 0;
  transform: scale(0.98);
  filter: blur(0.2px);
}
.news-events .news-events__item.is-entering {
  opacity: 1;
  transform: scale(1);
  filter: none;
}
.news-events .news-events__item.is-leaving {
  opacity: 0;
  transform: scale(0.985);
  filter: blur(0.3px);
}
.news-events__image {
  height: 270px;
  width: 100%;
  position: relative;
}
.news-events__image img {
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1) rotate(0);
  transition: all ease-in-out 0.6s;
}
.news-events__label-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  padding: 0 20px;
  bottom: 0;
  margin-bottom: -12px;
  z-index: 2;
  position: absolute;
  width: 100%;
}
.news-events__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 20px;
  padding: 0 20px 20px;
  min-width: 0;
  width: 100%;
}
.news-events__title {
  width: 100%;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  line-height: 28px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  min-width: 0;
}
.news-events__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 160ms ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #1E414E;
  border-radius: 7px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  transition: all ease-in-out 0.5s;
  opacity: 0.75;
}
.news-events__arrow::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.74646 6.25354H18.2465' stroke='%23A0D22B' stroke-linecap='round'/%3E%3Cpath d='M6.93628 17.5637L17.5429 6.95712' stroke='%23A0D22B' stroke-linecap='round'/%3E%3Cpath d='M18.25 18.7501V6.25006' stroke='%23A0D22B' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-size: contain;
  height: 22px;
  width: 25px;
  display: block;
  transition: all ease-in-out 0.4s;
  transform: rotate(45deg);
  margin-top: -3px;
}
.news-events__arrow:hover {
  background: #A0D22B;
  opacity: 1;
}
.news-events__arrow:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.74646 6.25354H18.2465' stroke='%231E414E' stroke-linecap='round'/%3E%3Cpath d='M6.93628 17.5637L17.5429 6.95712' stroke='%231E414E' stroke-linecap='round'/%3E%3Cpath d='M18.25 18.7501V6.25006' stroke='%231E414E' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.news-events__arrow--left {
  margin-left: -50px;
}
.news-events__arrow--left::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.74646 6.25354H18.2465' stroke='%23A0D22B' stroke-linecap='round'/%3E%3Cpath d='M6.93628 17.5637L17.5429 6.95712' stroke='%23A0D22B' stroke-linecap='round'/%3E%3Cpath d='M18.25 18.7501V6.25006' stroke='%23A0D22B' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-size: contain;
  height: 25px;
  width: 25px;
  display: block;
  transition: all ease-in-out 0.4s;
  transform: rotate(-135deg);
}
@media (max-width: 650px) {
  .news-events__arrow--left {
    margin-left: -20px;
  }
}
.news-events__arrow--right {
  right: 10px;
  margin-right: -55px;
}
.news-events__arrow--right::after {
  margin-top: 0px;
}
@media (max-width: 650px) {
  .news-events__arrow--right {
    margin-right: -20px;
  }
}

.label {
  padding: 5px 12px;
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  border-radius: 5px;
  background-color: #F5F5F5;
}
.label--type {
  color: #1E414E;
  background-color: #A0D22B;
}
.label--top {
  color: #A0D22B;
  background: transparent;
  padding: 10px 0;
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 20px;
}
.label--bottom {
  color: #1E414E;
  background: transparent;
  padding: 0;
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
}
.label--soft {
  background: rgba(30, 65, 78, 0.12);
  color: #1E414E;
}

.footer {
  background: linear-gradient(251deg, #136989 0%, #222A31 97.47%);
  width: 100svw;
  padding: 40px calc(var(--sidepadding) + 10px);
  margin-top: 100px;
  box-sizing: border-box;
  overflow: hidden;
}
.footer__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 20px;
}
.footer__top, .footer__bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  gap: 20px;
}
.footer__bottom {
  border-top: 0.5px solid #E3E3E3;
  padding: 20px 0 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  color: #E3E3E3;
}
.footer__top-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 60px;
}
.footer__top-left p {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  color: #E3E3E3;
}
.footer .linklist {
  column-count: 2;
  column-gap: 20px;
  padding-left: 20px;
}
.footer .linklist a {
  display: block;
  margin-bottom: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
}
.footer .linklist--small a {
  text-align: right;
  margin-bottom: 0;
}
.footer .divider {
  display: block;
  width: 0.5px;
  height: 140px;
  background-color: #E3E3E3;
}
.footer #conuti-logo {
  width: 177px;
  height: 134px;
}
.footer #conuti-logo .st0 {
  fill: #E3E3E3;
}

.header--detail {
  margin-top: 100px;
  background: none;
}
.header--detail .header__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
  padding: 80px 0 20px;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  background: none;
  box-shadow: none;
}
.header--detail .detail__hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: none;
}
.header--detail .detail__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header--detail .detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 65, 78, 0.65) 0%, rgba(30, 65, 78, 0.85) 60%, rgba(30, 65, 78, 0.95) 100%);
  z-index: -1;
  pointer-events: none;
  display: none;
}
.header--detail .detail__badge-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 12px;
}
.header--detail .detail__badge-date {
  background: rgba(227, 227, 227, 0.15);
  color: #E3E3E3;
}
.header--detail .detail__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 48px;
  line-height: 54px;
  margin: 0;
  max-width: 720px;
  color: #1E414E;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.header--detail .detail__summary {
  max-width: 720px;
  color: #222A31;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 28px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.header--detail .detail__summary p + p {
  margin-top: 10px;
}
@media (max-width: 1050px) {
  .header--detail {
    margin-top: 80px;
  }
  .header--detail .header__inner {
    padding: 50px calc(var(--sidepadding));
    min-height: 340px;
  }
  .header--detail .detail__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 36px;
    line-height: 42px;
  }
  .header--detail .detail__summary {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 17px;
    line-height: 25px;
  }
}
@media (max-width: 1024px) {
  .header--detail {
    margin-top: 70px;
  }
  .header--detail .header__inner {
    padding: 60px calc(var(--sidepadding));
    min-height: 360px;
  }
  .header--detail .detail__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 38px;
    line-height: 44px;
  }
  .header--detail .detail__summary {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 650px) {
  .header--detail {
    margin-top: 60px;
  }
  .header--detail .header__inner {
    padding: 40px calc(var(--sidepadding));
    gap: 16px;
    min-height: 300px;
  }
  .header--detail .detail__badge-group {
    gap: 8px;
    flex-wrap: wrap;
  }
  .header--detail .detail__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 28px;
    line-height: 34px;
  }
  .header--detail .detail__summary {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
  }
}

.section--detail {
  width: 100svw;
  padding: 80px calc(var(--sidepadding) + 10px) 100px;
}
.section--detail .section__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 80px;
}
@media (max-width: 1024px) {
  .section--detail {
    padding: 20px calc(var(--sidepadding) + 10px) 80px;
  }
  .section--detail .section__inner {
    gap: 40px;
    flex-direction: column;
  }
}
@media (max-width: 650px) {
  .section--detail {
    padding: 40px calc(var(--sidepadding));
  }
  .section--detail .section__inner {
    gap: 32px;
    flex-direction: column;
  }
}

.detail__content {
  flex: 0 1 75%;
  color: #222A31;
}
.detail__content img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}
.detail__content > *:first-child {
  margin-top: 0;
}
.detail__content > * + * {
  margin-top: 24px;
}
.detail__content p {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
}
.detail__content h2, .detail__content h3, .detail__content h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 34px;
  margin-top: 40px;
  margin-bottom: 16px;
}
.detail__content ul, .detail__content ol {
  padding-left: 20px;
}
.detail__content ul li, .detail__content ol li {
  margin-bottom: 10px;
}
.detail__content blockquote {
  border-left: 3px solid #1E414E;
  padding-left: 16px;
  color: #1E414E;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 28px;
}

.detail__sidebar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  flex: 0 1 25%;
  gap: 24px;
}
@media (max-width: 1024px) {
  .detail__sidebar {
    width: 100%;
    flex: 0 1 auto;
  }
}

.detail-panel {
  background: #E3E3E3;
  border-radius: 14px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 650px) {
  .detail-panel {
    padding: 24px;
  }
}

.detail--product {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #E3E3E3;
}

.header--product {
  margin-top: 20px !important;
  position: relative;
}
.header--product .header__inner--product {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: clamp(70px, 12vw, 140px) calc(var(--sidepadding) + 10px);
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 28px 55px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(14px);
}
.header--product .header__inner--product::before, .header--product .header__inner--product::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.header--product .header__inner--product::before {
  background: var(--detail-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -3;
}
.header--product .header__inner--product::after {
  background: linear-gradient(120deg, rgba(227, 227, 227, 0.92) 0%, rgba(227, 227, 227, 0.72) 55%, rgba(30, 65, 78, 0.18) 100%);
  z-index: -1;
}
.header--product .header__inner--product.has-image::before {
  opacity: 1;
}
.header--product .header__inner--product.has-video::before {
  opacity: 0.35;
}

.detail-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(28px, 6vw, 40px);
  max-width: 620px;
}

.detail-hero__content {
  display: grid;
  gap: clamp(18px, 4vw, 28px);
  padding: clamp(28px, 5vw, 40px);
  background: rgba(227, 227, 227, 0.86);
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(12px);
}

.detail-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  overflow: hidden;
}
.detail-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(227, 227, 227, 0.35) 0%, rgba(227, 227, 227, 0.08) 55%, rgba(30, 65, 78, 0.2) 100%);
  mix-blend-mode: screen;
}

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

.detail-hero__badge-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 12px;
}

.detail-hero__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 53px;
  line-height: 60px;
  margin: 0;
  color: #222A31;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.detail-hero__summary {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  color: rgba(34, 42, 49, 0.85);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.detail-hero__summary p + p {
  margin-top: 12px;
}

.detail-hero__cta {
  margin-top: 12px;
}

@media (max-width: 1050px) {
  .header--product {
    margin-top: 80px;
  }
  .header--product .header__inner--product {
    padding: clamp(60px, 10vw, 100px) calc(var(--sidepadding));
    border-radius: 28px;
  }
  .detail-hero {
    max-width: 100%;
    gap: clamp(24px, 5vw, 36px);
  }
  .detail-hero__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 44px;
    line-height: 50px;
  }
  .detail-hero__summary {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 27px;
  }
  .detail-hero__content {
    padding: clamp(26px, 4.5vw, 36px);
  }
}
@media (max-width: 1024px) {
  .header--product {
    margin-top: 70px;
  }
  .header--product .header__inner--product {
    padding: clamp(60px, 11vw, 110px) calc(var(--sidepadding) + 6px);
  }
  .detail-hero {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .header--product {
    margin-top: 60px;
  }
  .header--product .header__inner--product {
    padding: clamp(48px, 20vw, 72px) calc(var(--sidepadding));
    border-radius: 22px;
  }
  .detail-hero__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 32px;
    line-height: 38px;
  }
  .detail-hero__summary {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
  }
  .detail-hero__content {
    padding: clamp(20px, 10vw, 28px);
  }
  .detail-hero__badge-group {
    gap: 8px;
    flex-wrap: wrap;
  }
}
.detail-section {
  width: 100%;
  padding: clamp(60px, 8vw, 100px) calc(var(--sidepadding) + 10px);
}
.detail-section__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(32px, 6vw, 56px);
}
.detail-section__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.detail-section__body {
  display: grid;
  gap: clamp(24px, 4vw, 36px);
}
.detail-section__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 42px;
  line-height: 48px;
  margin: 0;
  color: #222A31;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.detail-section__subtitle {
  max-width: 440px;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  display: block;
  color: rgba(34, 42, 49, 0.65);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.detail-section__kicker {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1E414E;
}
.detail-section__media {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
  background: rgba(30, 65, 78, 0.08);
  display: grid;
  place-items: center;
}
.detail-section__media img,
.detail-section__media video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.detail-section__media video {
  background: rgba(34, 42, 49, 0.85);
  max-width: 100%;
}
.detail-section--body {
  background: #E3E3E3;
}
.detail-section--features {
  background: rgba(30, 65, 78, 0.04);
  padding-top: 100px;
}
.detail-section--cta {
  background: transparent;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 7vw, 100px);
}
.detail-section--split {
  background: linear-gradient(120deg, rgba(30, 65, 78, 0) 0%, rgba(30, 65, 78, 0.25) 60%);
}
.detail-section--split .detail-section__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 60px);
  align-items: flex-start;
}
.detail-section--cards {
  background: rgba(217, 217, 217, 0.3);
}
.detail-section--stats {
  background: linear-gradient(135deg, rgba(30, 65, 78, 0.12) 0%, rgba(30, 65, 78, 0.04) 100%);
}

.detail-richtext {
  display: grid;
  gap: 28px;
  color: #222A31;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.detail-richtext p {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
}
.detail-richtext h2, .detail-richtext h3, .detail-richtext h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  line-height: 38px;
  margin: 0;
}
.detail-richtext ul, .detail-richtext ol {
  padding-left: 24px;
}
.detail-richtext ul li, .detail-richtext ol li {
  margin-bottom: 10px;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
}
.detail-richtext blockquote {
  border-left: 4px solid #1E414E;
  padding-left: 16px;
  color: #1E414E;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 30px;
}
.detail-richtext img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.detail-richtext--compact {
  gap: 20px;
}
.detail-richtext--compact p {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
}

.detail-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 4vw, 32px);
}

.detail-features__item {
  background: #E3E3E3;
  border-radius: 28px;
  padding: clamp(24px, 3.8vw, 36px);
  box-shadow: 0 18px 32px rgba(17, 22, 26, 0.08);
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.detail-features__item::after {
  content: "";
  position: absolute;
  inset: -20% -30% auto auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(30, 65, 78, 0.18) 0%, transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}
.detail-features__item h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  color: #222A31;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.detail-features__item p {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  color: rgba(34, 42, 49, 0.75);
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.detail-columns {
  display: contents;
}
.detail-columns__primary {
  display: grid;
  gap: clamp(20px, 4vw, 36px);
}
.detail-columns__list {
  display: grid;
  gap: clamp(20px, 4vw, 28px);
}

.detail-column {
  background: #E3E3E3;
  border-radius: 28px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 18px 32px rgba(17, 22, 26, 0.1);
  display: grid;
  gap: 12px;
}
.detail-column h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28px;
  margin: 0;
}
.detail-column p {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  color: rgba(34, 42, 49, 0.75);
}

.detail-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(24px, 5vw, 40px);
}

.detail-card {
  position: relative;
  background: #E3E3E3;
  border-radius: 28px;
  padding: clamp(28px, 4.5vw, 40px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: grid;
  gap: 14px;
}
.detail-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(30, 65, 78, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.detail-card__icon {
  position: absolute;
  top: clamp(24px, 4vw, 22px);
  left: clamp(24px, 4vw, 32px);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 65, 78, 0.12) 0%, rgba(30, 65, 78, 0.06) 100%);
  border-radius: 12px;
  z-index: 1;
}
.detail-card__icon i, .detail-card__icon svg {
  width: 24px;
  height: 24px;
  color: #1E414E;
  stroke-width: 2;
}
.detail-card h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  margin-left: 50px;
  margin-top: -9px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  hyphenate-limit-chars: auto 3;
  hyphenate-limit-lines: 4;
}
.detail-card p {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  color: rgba(34, 42, 49, 0.7);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  hyphenate-limit-chars: auto 3;
  hyphenate-limit-lines: 4;
}
.detail-card--icon {
  padding-top: clamp(32px, 5vw, 42px);
}
.detail-card--icon .detail-card__icon {
  top: clamp(16px, 3vw, 24px);
  left: clamp(16px, 3vw, 24px);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(160, 210, 43, 0.2) 0%, rgba(30, 65, 78, 0.1) 100%);
  display: grid;
  place-items: center;
  color: #1E414E;
  font-size: 26px;
  line-height: 1;
}

.detail-section__cta {
  display: flex;
  justify-content: flex-start;
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  width: 100%;
}

.detail-stat {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 0.5px solid rgba(34, 42, 49, 0.5);
}
.detail-stat:first-child {
  border-left: none;
}
.detail-stat dt,
.detail-stat dd {
  margin: 0;
}
.detail-stat dt {
  order: 2;
}
.detail-stat dd {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: rgba(34, 42, 49, 0.75);
  order: 3;
}

.detail-stat__header {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(34, 42, 49, 0.5);
  order: 1;
  margin-bottom: 8px;
}

.detail-stat__value {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  line-height: 44px;
  color: #222A31;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.detail-stat__value span {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  color: rgba(34, 42, 49, 0.6);
}

.detail-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 60px);
  padding: clamp(28px, 5vw, 48px);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(30, 65, 78, 0.12) 0%, rgba(30, 65, 78, 0.04) 55%, #E3E3E3 100%);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.detail-cta__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}
.detail-cta__text h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 38px;
  margin: 0;
  color: #222A31;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}
.detail-cta__text p {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  color: rgba(34, 42, 49, 0.7);
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}
.detail-cta .button {
  flex-shrink: 0;
  min-width: 200px;
  box-sizing: border-box;
}

@media (max-width: 1050px) {
  .detail-section {
    padding: clamp(50px, 8vw, 80px) calc(var(--sidepadding));
  }
  .detail-section--split .detail-section__inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 48px);
  }
  .detail-section--features {
    padding-top: 70px;
  }
  .detail-section__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 36px;
    line-height: 42px;
  }
  .detail-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .detail-stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .detail-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .detail-cta__text h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    line-height: 34px;
  }
  .detail-cta .button {
    width: 100%;
    min-width: auto;
  }
}
@media (max-width: 1024px) {
  .detail-section {
    padding: clamp(60px, 10vw, 90px) calc(var(--sidepadding) + 6px);
  }
  .detail-section--split .detail-section__inner {
    grid-template-columns: 1fr;
  }
  .detail-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 650px) {
  .detail-section {
    padding: clamp(40px, 8vw, 60px) calc(var(--sidepadding));
  }
  .detail-section__title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 28px;
    line-height: 34px;
  }
  .detail-cta {
    border-radius: 20px;
    padding: clamp(24px, 4.5vw, 36px);
  }
  .detail-cta__text h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    line-height: 30px;
  }
  .detail-cta__text p {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
  }
  .detail-richtext p,
  .detail-features__item p {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
  }
  .detail-card p {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
  }
  .detail-stat__value {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    line-height: 32px;
  }
  .detail-features {
    grid-template-columns: 1fr;
  }
  .detail-cards {
    grid-template-columns: 1fr;
  }
}
.detail-panel__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 28px;
  margin: 0;
  color: #1E414E;
}

.detail-panel__button {
  margin-top: 10px;
}

.detail-panel__download {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  color: #1E414E;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.detail-panel__download:hover {
  color: #A0D22B;
}

.detail-meta {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-meta__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid rgba(34, 42, 49, 0.1);
  padding-bottom: 30px;
}
.detail-meta__row dt {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: rgba(34, 42, 49, 0.6);
}
.detail-meta__row dd {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  color: #222A31;
}

.detail-meta__row--multiline dd {
  white-space: pre-line;
}

.detail-meta__row--slots dd {
  padding-top: 6px;
}

.detail-slots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.detail-slots__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-slots__time {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  color: rgba(34, 42, 49, 0.65);
}

.detail-slots__text {
  margin: 0;
  color: rgba(34, 42, 49, 0.75);
}

.detail-tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 8px;
}
.detail-tags .label {
  background: rgba(30, 65, 78, 0.05);
  color: #1E414E;
}

.detail-speakers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-speakers__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 16px;
}
.detail-speakers__item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.detail-speakers__item strong {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
}
.detail-speakers__item .detail-speakers__role {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: rgba(34, 42, 49, 0.8);
}

.detail-organizers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail-organizers strong {
  display: block;
  padding-bottom: 10px;
}
.detail-organizers__main {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(34, 42, 49, 0.1);
}
.detail-organizers__list .detail-organizer {
  padding-bottom: 30px;
}

.detail-organizer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: nowrap;
}
.detail-organizer img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}

.detail-organizer__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-organizer__name {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
}

.detail-organizer__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.detail-organizer__contacts a {
  font-family: "Raleway", sans-serif;
  font-family: "GeistMono", monospace;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
  color: #1E414E;
  text-decoration: none;
}
.detail-organizer__contacts a:hover {
  color: #A0D22B;
}

.detail-location {
  margin: 0;
}
.detail-location img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 1050px) {
  .detail-panel {
    padding: 26px;
  }
  .detail-meta__row {
    padding-bottom: 24px;
  }
  .detail-meta__row dt {
    font-family: "Raleway", sans-serif;
    font-family: "GeistMono", monospace;
    font-weight: 300;
    font-style: normal;
    font-size: 11px;
    line-height: 15px;
  }
  .detail-meta__row dd {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 17px;
    line-height: 23px;
  }
}
@media (max-width: 650px) {
  .detail-panel {
    gap: 16px;
    padding: 22px;
  }
  .detail-meta__row {
    gap: 4px;
    padding-bottom: 20px;
  }
  .detail-organizer {
    align-items: flex-start;
  }
  .detail-organizer img {
    width: 48px;
    height: 48px;
  }
  .detail-meta {
    gap: 32px;
  }
}
.detail__features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1050px) {
  .detail__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .detail__features {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.detail__feature {
  background: rgba(30, 65, 78, 0.08);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.detail__feature h3 {
  margin: 0 0 10px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
.detail__feature p {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  width: 100svw;
  padding: 0 calc(var(--sidepadding) + 10px);
  margin-top: 100px;
  box-sizing: border-box;
}
@media (max-width: 650px) {
  .header {
    padding: 0 var(--sidepadding);
  }
}
.breadcrumb + .header {
  margin-top: 0;
}
.header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  width: 100%;
  background: radial-gradient(62.12% 62.12% at 50% 50%, rgba(19, 105, 137, 0.9) 0%, rgba(34, 42, 49, 0.9) 97.47%);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.header__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -2;
}
.header__title {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 40px;
  line-height: 44px;
  color: #E3E3E3;
  padding: 100px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
@media (max-width: 650px) {
  .header__title {
    padding: 50px;
  }
}
.header--products .header__inner {
  background: radial-gradient(62.12% 62.12% at 50% 50%, rgba(19, 137, 58, 0.9) 0%, rgba(35, 49, 34, 0.9) 97.47%);
}
.header--leistungen .header__inner {
  background: radial-gradient(62.12% 62.12% at 50% 50%, rgba(19, 80, 137, 0.9) 0%, rgba(5, 59, 72, 0.9) 97.47%);
}
.header--about {
  margin-top: 100px !important;
}
.header--about .header__inner--product {
  border-radius: 14px;
  max-width: none;
  padding: calc(var(--sidepadding) / 2) var(--sidepadding);
}

.news-events__controls {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  width: 100%;
}
@media (max-width: 1024px) {
  .news-events__controls {
    gap: 18px;
    padding: 18px 20px 22px;
  }
}
@media (max-width: 650px) {
  .news-events__controls {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: flex-start;
    padding: 16px;
    gap: 16px;
  }
}
.news-events__toggle {
  flex: 1 1 55%;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.news-events__toggle .news-events__toggle-button {
  flex: 0 1 auto;
  min-width: 120px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  background-color: #E3E3E3;
  color: #222A31;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.news-events__toggle .news-events__toggle-button.is-active, .news-events__toggle .news-events__toggle-button:hover, .news-events__toggle .news-events__toggle-button:focus-visible {
  background-color: #1E414E;
  color: #A0D22B;
  transform: translateY(-1px);
}
.news-events__toggle .news-events__toggle-button:focus-visible {
  outline: 2px solid rgba(160, 210, 43, 0.5);
  outline-offset: 3px;
}
.news-events__search {
  flex: 1 1 80%;
  position: relative;
  border-radius: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
}
.news-events__search input[type=search] {
  width: 100%;
  min-width: 320px;
  border: none;
  border-radius: 8px;
  background-color: #D9D9D9;
  color: #222A31;
  padding: 12px 16px;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  transition: box-shadow 0.2s ease;
}
.news-events__search input[type=search]::placeholder {
  color: rgba(34, 42, 49, 0.5);
}
.news-events__search input[type=search]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(30, 65, 78, 0.35);
}
.news-events__empty {
  display: none;
  margin-top: 30px;
  padding: 40px;
  width: 100%;
  border-radius: 14px;
  background-color: #E3E3E3;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  color: #222A31;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 22px;
}
.news-events__empty.is-visible {
  display: block;
}

.style-box {
  position: relative;
  width: 100%;
  padding: calc(var(--sidepadding) / 4);
  border-radius: 12px;
  background: rgba(30, 65, 78, 0.05);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.style-box p {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
}
.style-box p + p {
  margin-top: 10px;
}
.style-box__title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.style-box--highlight {
  background: #1e414e;
  color: #E3E3E3;
}
.style-box--info {
  background: rgba(30, 65, 78, 0.08);
  color: #1E414E;
}
.style-box--success {
  background: rgba(160, 210, 43, 0.12);
  color: #1E414E;
}
.style-box--warning {
  background: rgba(255, 177, 66, 0.18);
  color: #222A31;
}
.style-box--danger {
  background: rgba(235, 87, 87, 0.18);
  color: #222A31;
}
.style-box--dark {
  background: rgba(30, 65, 78, 0.85);
  color: #E3E3E3;
}
.style-box--dark a {
  color: #A0D22B;
}

@media (max-width: 650px) {
  .style-box {
    padding: calc(var(--sidepadding) / 4 * 0.9);
  }
}

/*# sourceMappingURL=main.css.map */
