@charset "UTF-8";
/* ==========================================================================
   GRID SYSTEM
   12-column CSS Grid — static & WordPress friendly
   ========================================================================== */
/* --------------------------------------------------------------------------
   CONFIG
   -------------------------------------------------------------------------- */
/* Breakpoints */
/* --------------------------------------------------------------------------
   CONTAINER
   -------------------------------------------------------------------------- */
.container {
  max-width: 1840px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* Optional container sizes */
.container--narrow {
  max-width: 1080px;
}

.container--wide {
  max-width: 1600px;
}

/* --------------------------------------------------------------------------
   GRID
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  /* Default behavior */
  align-items: start;
  justify-items: stretch;
}

/* --------------------------------------------------------------------------
   GRID MODIFIERS (container-level)
   -------------------------------------------------------------------------- */
/* Vertical alignment */
.grid--start {
  align-items: start;
}

.grid--center {
  align-items: center;
}

.grid--end {
  align-items: end;
}

.grid--stretch {
  align-items: stretch;
}

/* Horizontal item alignment */
.grid--items-start {
  justify-items: start;
}

.grid--items-center {
  justify-items: center;
}

.grid--items-end {
  justify-items: end;
}

.grid--items-stretch {
  justify-items: stretch;
}

/* Content alignment */
.grid--content-start {
  align-content: start;
}

.grid--content-center {
  align-content: center;
}

.grid--content-end {
  align-content: end;
}

.grid--content-between {
  align-content: space-between;
}

/* Shorthand helpers */
.grid--place-center {
  place-items: center;
}

/* Layout presets */
.grid--hero {
  min-height: 80vh;
  align-items: center;
}

.grid--no-gap {
  gap: 0;
}

/* --------------------------------------------------------------------------
   COLUMNS
   -------------------------------------------------------------------------- */
.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

@media (max-width: 1024px) {
  .col-m-1 {
    grid-column: span 1;
  }
  .col-m-2 {
    grid-column: span 2;
  }
  .col-m-3 {
    grid-column: span 3;
  }
  .col-m-4 {
    grid-column: span 4;
  }
  .col-m-5 {
    grid-column: span 5;
  }
  .col-m-6 {
    grid-column: span 6;
  }
  .col-m-7 {
    grid-column: span 7;
  }
  .col-m-8 {
    grid-column: span 8;
  }
  .col-m-9 {
    grid-column: span 9;
  }
  .col-m-10 {
    grid-column: span 10;
  }
  .col-m-11 {
    grid-column: span 11;
  }
  .col-m-12 {
    grid-column: span 12;
  }
}
@media (max-width: 567px) {
  .col-s-1 {
    grid-column: span 1 !important;
  }
  .col-s-2 {
    grid-column: span 2 !important;
  }
  .col-s-3 {
    grid-column: span 3 !important;
  }
  .col-s-4 {
    grid-column: span 4 !important;
  }
  .col-s-5 {
    grid-column: span 5 !important;
  }
  .col-s-6 {
    grid-column: span 6 !important;
  }
  .col-s-7 {
    grid-column: span 7 !important;
  }
  .col-s-8 {
    grid-column: span 8 !important;
  }
  .col-s-9 {
    grid-column: span 9 !important;
  }
  .col-s-10 {
    grid-column: span 10 !important;
  }
  .col-s-11 {
    grid-column: span 11 !important;
  }
  .col-s-12 {
    grid-column: span 12 !important;
  }
}
/* Column positioning */
.col-start-1 {
  grid-column-start: 1;
}

.col-start-2 {
  grid-column-start: 2;
}

.col-start-3 {
  grid-column-start: 3;
}

.col-start-4 {
  grid-column-start: 4;
}

.col-start-5 {
  grid-column-start: 5;
}

.col-start-6 {
  grid-column-start: 6;
}

.col-start-7 {
  grid-column-start: 7;
}

.col-start-8 {
  grid-column-start: 8;
}

.col-start-9 {
  grid-column-start: 9;
}

.col-start-10 {
  grid-column-start: 10;
}

.col-start-11 {
  grid-column-start: 11;
}

.col-start-12 {
  grid-column-start: 12;
}

/* --------------------------------------------------------------------------
   COLUMN ALIGNMENT (child-level)
   -------------------------------------------------------------------------- */
.self-start {
  align-self: start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: end;
}

.self-stretch {
  align-self: stretch;
}

.justify-self-start {
  justify-self: start;
}

.justify-self-center {
  justify-self: center;
}

.justify-self-end {
  justify-self: end;
}

.justify-self-stretch {
  justify-self: stretch;
}

.align-end {
  grid-column-end: -1;
}

@media (max-width: 1024px) {
  .align-start-m {
    grid-column-end: auto;
  }
}
@media (max-width: 567px) {
  .align-start-s {
    grid-column-end: auto;
  }
}
/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 767px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
  /* Stack columns on mobile by default */
  [class^=col-] {
    grid-column: span 4;
  }
}
/* --------------------------------------------------------------------------
   DEBUG (optional)
   -------------------------------------------------------------------------- */
/*
.grid--debug {
  background-image:
    repeating-linear-gradient(
      to right,
      rgba(255, 0, 0, 0.1),
      rgba(255, 0, 0, 0.1) 1fr,
      transparent 1fr,
      transparent 2fr
    );
}
*/
@font-face {
  font-family: "NeueMachina";
  src: url("../fonts/PPNeueMachina-PlainRegular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeueMachina";
  src: url("../fonts/PPNeueMachina-InktrapUltraboldItalic.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   Flex Utilities
   ========================================================= */
/* -------------------------
   Display
   ------------------------- */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

/* -------------------------
   Direction
   ------------------------- */
.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

/* -------------------------
   Wrapping
   ------------------------- */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

/* -------------------------
   Justify content (main axis)
   ------------------------- */
.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

/* -------------------------
   Align items (cross axis)
   ------------------------- */
.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

/* -------------------------
   Align content (multi-line)
   ------------------------- */
.content-start {
  align-content: flex-start;
}

.content-center {
  align-content: center;
}

.content-end {
  align-content: flex-end;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-stretch {
  align-content: stretch;
}

/* -------------------------
   Gap
   ------------------------- */
.gap-0 {
  gap: 0;
}

.gap-xs {
  gap: 0.25rem;
}

.gap-sm {
  gap: 0.5rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 1.5rem;
}

.gap-xl {
  gap: 2rem;
}

/* -------------------------
   Flex items
   ------------------------- */
.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

/* -------------------------
   Grow / Shrink
   ------------------------- */
.grow {
  flex-grow: 1;
}

.grow-0 {
  flex-grow: 0;
}

.shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

/* -------------------------
   Self alignment
   ------------------------- */
.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.self-stretch {
  align-self: stretch;
}

h2 {
  font-size: 14px;
  color: #640832;
  font-family: "NeueMachina", sans-serif;
  line-height: 110%;
  letter-spacing: -0.03em;
}

.section-title {
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.05em;
}

.text-20 {
  font-size: clamp(17px, 17px + 3 * (100vw - 375px) / 1065, 20px);
  line-height: 130%;
}

.text-huge {
  font-size: clamp(28px, 28px + 42 * (100vw - 375px) / 1065, 70px);
  line-height: 100%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.text-align-right {
  text-align: right;
}

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

.text-align-left {
  text-align: left;
}

.font-weight-800 {
  font-weight: 800;
}

.text-color-black {
  color: black;
}

.text-uppercase {
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .medium-text-align-left {
    text-align: left;
  }
  .medium-text-align-right {
    text-align: right;
  }
  .section-title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .small-text-align-left {
    text-align: left !important;
  }
  .section-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .mobile_justify-text {
    text-align: justify;
  }
}
.spacer-0 {
  height: 0px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-0 {
    height: 0px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-0 {
    height: 0px !important;
  }
}
.spacer-2 {
  height: 2px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-2 {
    height: 2px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-2 {
    height: 2px !important;
  }
}
.spacer-4 {
  height: 4px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-4 {
    height: 4px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-4 {
    height: 4px !important;
  }
}
.spacer-6 {
  height: 6px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-6 {
    height: 6px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-6 {
    height: 6px !important;
  }
}
.spacer-8 {
  height: 8px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-8 {
    height: 8px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-8 {
    height: 8px !important;
  }
}
.spacer-10 {
  height: 10px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-10 {
    height: 10px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-10 {
    height: 10px !important;
  }
}
.spacer-12 {
  height: 12px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-12 {
    height: 12px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-12 {
    height: 12px !important;
  }
}
.spacer-14 {
  height: 14px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-14 {
    height: 14px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-14 {
    height: 14px !important;
  }
}
.spacer-16 {
  height: 16px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-16 {
    height: 16px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-16 {
    height: 16px !important;
  }
}
.spacer-18 {
  height: 18px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-18 {
    height: 18px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-18 {
    height: 18px !important;
  }
}
.spacer-20 {
  height: 20px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-20 {
    height: 20px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-20 {
    height: 20px !important;
  }
}
.spacer-22 {
  height: 22px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-22 {
    height: 22px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-22 {
    height: 22px !important;
  }
}
.spacer-24 {
  height: 24px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-24 {
    height: 24px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-24 {
    height: 24px !important;
  }
}
.spacer-26 {
  height: 26px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-26 {
    height: 26px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-26 {
    height: 26px !important;
  }
}
.spacer-28 {
  height: 28px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-28 {
    height: 28px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-28 {
    height: 28px !important;
  }
}
.spacer-30 {
  height: 30px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-30 {
    height: 30px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-30 {
    height: 30px !important;
  }
}
.spacer-32 {
  height: 32px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-32 {
    height: 32px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-32 {
    height: 32px !important;
  }
}
.spacer-34 {
  height: 34px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-34 {
    height: 34px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-34 {
    height: 34px !important;
  }
}
.spacer-36 {
  height: 36px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-36 {
    height: 36px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-36 {
    height: 36px !important;
  }
}
.spacer-38 {
  height: 38px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-38 {
    height: 38px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-38 {
    height: 38px !important;
  }
}
.spacer-40 {
  height: 40px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-40 {
    height: 40px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-40 {
    height: 40px !important;
  }
}
.spacer-42 {
  height: 42px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-42 {
    height: 42px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-42 {
    height: 42px !important;
  }
}
.spacer-44 {
  height: 44px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-44 {
    height: 44px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-44 {
    height: 44px !important;
  }
}
.spacer-46 {
  height: 46px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-46 {
    height: 46px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-46 {
    height: 46px !important;
  }
}
.spacer-48 {
  height: 48px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-48 {
    height: 48px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-48 {
    height: 48px !important;
  }
}
.spacer-50 {
  height: 50px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-50 {
    height: 50px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-50 {
    height: 50px !important;
  }
}
.spacer-52 {
  height: 52px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-52 {
    height: 52px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-52 {
    height: 52px !important;
  }
}
.spacer-54 {
  height: 54px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-54 {
    height: 54px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-54 {
    height: 54px !important;
  }
}
.spacer-56 {
  height: 56px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-56 {
    height: 56px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-56 {
    height: 56px !important;
  }
}
.spacer-58 {
  height: 58px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-58 {
    height: 58px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-58 {
    height: 58px !important;
  }
}
.spacer-60 {
  height: 60px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-60 {
    height: 60px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-60 {
    height: 60px !important;
  }
}
.spacer-62 {
  height: 62px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-62 {
    height: 62px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-62 {
    height: 62px !important;
  }
}
.spacer-64 {
  height: 64px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-64 {
    height: 64px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-64 {
    height: 64px !important;
  }
}
.spacer-66 {
  height: 66px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-66 {
    height: 66px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-66 {
    height: 66px !important;
  }
}
.spacer-68 {
  height: 68px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-68 {
    height: 68px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-68 {
    height: 68px !important;
  }
}
.spacer-70 {
  height: 70px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-70 {
    height: 70px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-70 {
    height: 70px !important;
  }
}
.spacer-72 {
  height: 72px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-72 {
    height: 72px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-72 {
    height: 72px !important;
  }
}
.spacer-74 {
  height: 74px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-74 {
    height: 74px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-74 {
    height: 74px !important;
  }
}
.spacer-76 {
  height: 76px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-76 {
    height: 76px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-76 {
    height: 76px !important;
  }
}
.spacer-78 {
  height: 78px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-78 {
    height: 78px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-78 {
    height: 78px !important;
  }
}
.spacer-80 {
  height: 80px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-80 {
    height: 80px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-80 {
    height: 80px !important;
  }
}
.spacer-82 {
  height: 82px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-82 {
    height: 82px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-82 {
    height: 82px !important;
  }
}
.spacer-84 {
  height: 84px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-84 {
    height: 84px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-84 {
    height: 84px !important;
  }
}
.spacer-86 {
  height: 86px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-86 {
    height: 86px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-86 {
    height: 86px !important;
  }
}
.spacer-88 {
  height: 88px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-88 {
    height: 88px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-88 {
    height: 88px !important;
  }
}
.spacer-90 {
  height: 90px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-90 {
    height: 90px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-90 {
    height: 90px !important;
  }
}
.spacer-92 {
  height: 92px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-92 {
    height: 92px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-92 {
    height: 92px !important;
  }
}
.spacer-94 {
  height: 94px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-94 {
    height: 94px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-94 {
    height: 94px !important;
  }
}
.spacer-96 {
  height: 96px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-96 {
    height: 96px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-96 {
    height: 96px !important;
  }
}
.spacer-98 {
  height: 98px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-98 {
    height: 98px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-98 {
    height: 98px !important;
  }
}
.spacer-100 {
  height: 100px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-100 {
    height: 100px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-100 {
    height: 100px !important;
  }
}
.spacer-102 {
  height: 102px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-102 {
    height: 102px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-102 {
    height: 102px !important;
  }
}
.spacer-104 {
  height: 104px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-104 {
    height: 104px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-104 {
    height: 104px !important;
  }
}
.spacer-106 {
  height: 106px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-106 {
    height: 106px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-106 {
    height: 106px !important;
  }
}
.spacer-108 {
  height: 108px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-108 {
    height: 108px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-108 {
    height: 108px !important;
  }
}
.spacer-110 {
  height: 110px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-110 {
    height: 110px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-110 {
    height: 110px !important;
  }
}
.spacer-112 {
  height: 112px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-112 {
    height: 112px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-112 {
    height: 112px !important;
  }
}
.spacer-114 {
  height: 114px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-114 {
    height: 114px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-114 {
    height: 114px !important;
  }
}
.spacer-116 {
  height: 116px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-116 {
    height: 116px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-116 {
    height: 116px !important;
  }
}
.spacer-118 {
  height: 118px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-118 {
    height: 118px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-118 {
    height: 118px !important;
  }
}
.spacer-120 {
  height: 120px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-120 {
    height: 120px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-120 {
    height: 120px !important;
  }
}
.spacer-122 {
  height: 122px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-122 {
    height: 122px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-122 {
    height: 122px !important;
  }
}
.spacer-124 {
  height: 124px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-124 {
    height: 124px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-124 {
    height: 124px !important;
  }
}
.spacer-126 {
  height: 126px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-126 {
    height: 126px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-126 {
    height: 126px !important;
  }
}
.spacer-128 {
  height: 128px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-128 {
    height: 128px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-128 {
    height: 128px !important;
  }
}
.spacer-130 {
  height: 130px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-130 {
    height: 130px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-130 {
    height: 130px !important;
  }
}
.spacer-132 {
  height: 132px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-132 {
    height: 132px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-132 {
    height: 132px !important;
  }
}
.spacer-134 {
  height: 134px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-134 {
    height: 134px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-134 {
    height: 134px !important;
  }
}
.spacer-136 {
  height: 136px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-136 {
    height: 136px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-136 {
    height: 136px !important;
  }
}
.spacer-138 {
  height: 138px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-138 {
    height: 138px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-138 {
    height: 138px !important;
  }
}
.spacer-140 {
  height: 140px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-140 {
    height: 140px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-140 {
    height: 140px !important;
  }
}
.spacer-142 {
  height: 142px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-142 {
    height: 142px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-142 {
    height: 142px !important;
  }
}
.spacer-144 {
  height: 144px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-144 {
    height: 144px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-144 {
    height: 144px !important;
  }
}
.spacer-146 {
  height: 146px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-146 {
    height: 146px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-146 {
    height: 146px !important;
  }
}
.spacer-148 {
  height: 148px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-148 {
    height: 148px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-148 {
    height: 148px !important;
  }
}
.spacer-150 {
  height: 150px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-150 {
    height: 150px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-150 {
    height: 150px !important;
  }
}
.spacer-152 {
  height: 152px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-152 {
    height: 152px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-152 {
    height: 152px !important;
  }
}
.spacer-154 {
  height: 154px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-154 {
    height: 154px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-154 {
    height: 154px !important;
  }
}
.spacer-156 {
  height: 156px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-156 {
    height: 156px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-156 {
    height: 156px !important;
  }
}
.spacer-158 {
  height: 158px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-158 {
    height: 158px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-158 {
    height: 158px !important;
  }
}
.spacer-160 {
  height: 160px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-160 {
    height: 160px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-160 {
    height: 160px !important;
  }
}
.spacer-162 {
  height: 162px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-162 {
    height: 162px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-162 {
    height: 162px !important;
  }
}
.spacer-164 {
  height: 164px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-164 {
    height: 164px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-164 {
    height: 164px !important;
  }
}
.spacer-166 {
  height: 166px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-166 {
    height: 166px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-166 {
    height: 166px !important;
  }
}
.spacer-168 {
  height: 168px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-168 {
    height: 168px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-168 {
    height: 168px !important;
  }
}
.spacer-170 {
  height: 170px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-170 {
    height: 170px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-170 {
    height: 170px !important;
  }
}
.spacer-172 {
  height: 172px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-172 {
    height: 172px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-172 {
    height: 172px !important;
  }
}
.spacer-174 {
  height: 174px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-174 {
    height: 174px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-174 {
    height: 174px !important;
  }
}
.spacer-176 {
  height: 176px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-176 {
    height: 176px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-176 {
    height: 176px !important;
  }
}
.spacer-178 {
  height: 178px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-178 {
    height: 178px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-178 {
    height: 178px !important;
  }
}
.spacer-180 {
  height: 180px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-180 {
    height: 180px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-180 {
    height: 180px !important;
  }
}
.spacer-182 {
  height: 182px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-182 {
    height: 182px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-182 {
    height: 182px !important;
  }
}
.spacer-184 {
  height: 184px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-184 {
    height: 184px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-184 {
    height: 184px !important;
  }
}
.spacer-186 {
  height: 186px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-186 {
    height: 186px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-186 {
    height: 186px !important;
  }
}
.spacer-188 {
  height: 188px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-188 {
    height: 188px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-188 {
    height: 188px !important;
  }
}
.spacer-190 {
  height: 190px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-190 {
    height: 190px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-190 {
    height: 190px !important;
  }
}
.spacer-192 {
  height: 192px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-192 {
    height: 192px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-192 {
    height: 192px !important;
  }
}
.spacer-194 {
  height: 194px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-194 {
    height: 194px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-194 {
    height: 194px !important;
  }
}
.spacer-196 {
  height: 196px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-196 {
    height: 196px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-196 {
    height: 196px !important;
  }
}
.spacer-198 {
  height: 198px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-198 {
    height: 198px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-198 {
    height: 198px !important;
  }
}
.spacer-200 {
  height: 200px;
}

@media (min-width: 568px) and (max-width: 1024px) {
  .spacer-m-200 {
    height: 200px !important;
  }
}
@media (max-width: 567px) {
  .spacer-s-200 {
    height: 200px !important;
  }
}
.burger-hide {
  display: block;
}
@media (max-width: 1140px) {
  .burger-hide {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .mobile-hide {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .tablet-hide {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .show-desktop {
    display: block !important;
  }
}

.tablet-show {
  display: none;
}
@media (max-width: 1023px) {
  .tablet-show {
    display: block !important;
  }
}

.show-mobile {
  display: none;
}
@media (max-width: 767px) {
  .show-mobile {
    display: block !important;
  }
}

.button_link {
  padding: 3px 3px 3px 20px;
  background: white;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
  line-height: 100%;
}
.button_link.lang-switch {
  padding: 20px;
}
.button_link .square_link {
  background: #A0D7FF;
  border-radius: 7px;
  width: 50px;
  height: 54px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.button_link .square_link .arrow_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.4s ease-out;
  width: 12px;
  height: 12px;
}
.button_link .square_link .arrow_icon.first_arrow {
  transform: translate3d(-50%, -50%, 0px);
}
.button_link .square_link .arrow_icon.second_arrow {
  transition-delay: 0.12s;
  transform: translate3d(-300%, 195%, 0px);
}
.button_link:hover .square_link .arrow_icon.first_arrow {
  transform: translate3d(200%, -335%, 0);
}
.button_link:hover .square_link .arrow_icon.second_arrow {
  transform: translate3d(-50%, -50%, 0px);
}
.button_link.mod-cta {
  color: #000;
  margin-bottom: 21px;
}
.button_link.mod-cta .square_link {
  background: #EB3B28;
}

.container-regular {
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
}

.padding-global {
  padding-left: 40px;
  padding-right: 40px;
}
@media (width <= 1140px) {
  .padding-global {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.lang-switcher {
  position: relative;
  font-family: Inter, sans-serif;
}
.lang-switcher details {
  position: relative;
  height: 100%;
  border-radius: 10px;
  background: white;
  display: flex;
  align-items: center;
}
.lang-switcher details:not([open]) ul {
  display: none;
}
.lang-switcher summary {
  padding: 0 20px;
  display: flex;
  gap: 5px;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-size: 14px;
}
.lang-switcher summary::-webkit-details-marker {
  display: none;
}
.lang-switcher svg {
  width: 10px;
  height: 6px;
}
.lang-switcher ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 6px 0 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.lang-switcher li a {
  display: block;
  padding: 6px 12px;
  font-size: 13px;
  text-decoration: none;
  color: #000;
}
.lang-switcher li a:hover {
  background: #f2f2f2;
}
@media (max-width: 1140px) {
  .lang-switcher.desktop {
    display: none;
  }
}
.lang-switcher.mobile {
  display: none;
}

/* ========================= */
/* Navigation (Header + Nav) */
/* ========================= */
@media (min-width: 1141px) {
  .logo-section img {
    transform-origin: left top;
    will-change: transform;
    position: relative;
    z-index: 9999;
    width: 100%;
  }
  .navbar_logo svg {
    opacity: 0;
  }
}
.nav-block {
  position: sticky;
  top: 0px;
  z-index: 99999;
}
.nav-block.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.nav-block.is-fixed header {
  transform: translateY(20px);
}
.nav-block.is-fixed header .navbar_logo {
  color: black;
}
.nav-block.is-fixed header .navbar_logo svg {
  opacity: 1;
}

header {
  color: black;
  transform: translateY(90px);
}
header .navbar_logo {
  display: block;
  height: 40px;
  color: #A0D7FF;
  transition: color 0.25s ease-out;
}
header .navbar_logo svg {
  height: 100%;
}
header .burger-wrapper {
  display: none;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1140px) {
  header .burger-wrapper {
    display: flex;
  }
}

/* ========================= */
/* Desktop navigation        */
/* ========================= */
.nav-wrapper {
  display: flex;
  gap: 10px;
}
.nav-wrapper .nav-list {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 0 20px;
  align-items: center;
  font-size: 14px;
  line-height: 112%;
  width: 100%;
  background: white;
  border-radius: 10px;
}
.nav-wrapper .nav-list .cur-page {
  display: flex;
  gap: 5px;
  align-items: center;
}
.nav-wrapper .nav-list .cur-page:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(100, 8, 50, 0.5019607843);
}
.nav-wrapper .nav-list .nav-list_divider {
  width: 1px;
  height: 20px;
  background: rgba(100, 8, 50, 0.5019607843);
}
.nav-wrapper .nav-list .nav-list_sections {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-wrapper .nav-list .nav-list_sections li {
  counter-increment: nav;
  display: flex;
  gap: 3px;
}
.nav-wrapper .nav-list .nav-list_sections li:before {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  line-height: 1;
  content: counter(nav, decimal-leading-zero);
  color: rgba(100, 8, 50, 0.5019607843);
  letter-spacing: -0.07em;
  font-variant-position: super;
}

/* ========================= */
/* Mobile header             */
/* ========================= */
@media (max-width: 1140px) {
  header {
    transform: translateY(0) !important;
    position: fixed;
    inset: 15px 15px auto 15px;
    height: 60px;
    background: white;
    padding: 0 15px;
    border-radius: 10px;
    z-index: 2000;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
  }
  header .navbar_logo {
    height: 27px;
  }
}
@media (max-width: 1140px) and (max-width: 1140px) {
  header .navbar_logo {
    color: black;
  }
}
@media (max-width: 1140px) {
  .nav-wrapper,
  header > .button_link {
    display: none;
  }
  .burger-wrapper {
    display: flex;
  }
  .burger-wrapper .menu-text__mobile {
    transition: opacity 0.3s ease;
  }
  .burger-wrapper .burger {
    position: relative;
    width: 32px;
    height: 34px;
  }
  .burger-wrapper .burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .burger-wrapper .burger span:nth-child(1) {
    top: 6px;
  }
  .burger-wrapper .burger span:nth-child(2) {
    top: 16px;
  }
}
/* ========================= */
/* Fullscreen mobile nav     */
/* ========================= */
.mobile-nav {
  display: none;
}

@media (max-width: 1140px) {
  .dashes-top {
    position: relative;
  }
  .dashes-top:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0.5px;
    background-image: repeating-linear-gradient(to right, currentColor 0 3px, transparent 3px 6px);
  }
  .dashes-bottom {
    position: relative;
  }
  .dashes-bottom:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.5px;
    background-image: repeating-linear-gradient(to right, currentColor 0 3px, transparent 3px 6px);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    inset: 0;
    padding: 135px 30px 60px 30px;
    background: #ECEAEA;
    z-index: 1000;
    transform: translateY(-200%);
    transition: transform 0.35s ease;
  }
  .mobile-nav .mobile-nav-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .mobile-nav .mobile-nav-footer .mobile-nav-footer_col {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .mobile-nav .mobile-nav-footer .mobile-nav-footer_col .mobile-nav-footer_heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 125%;
    letter-spacing: -0.07em;
  }
  .mobile-nav .mobile-nav-footer .mobile-nav-footer_col a {
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.05em;
    cursor: pointer;
  }
  .mobile-nav.is-open {
    transform: translateY(0);
  }
  .mobile-nav-inner {
    padding: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .mobile-nav .cur-page {
    font-size: 24px;
    display: flex;
    gap: 8px;
    align-items: center;
    letter-spacing: -0.05em;
  }
  .mobile-nav .cur-page:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(100, 8, 50, 0.5019607843);
  }
  .mobile-nav .nav-list_sections {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .mobile-nav .nav-list_sections li {
    counter-increment: nav;
    display: flex;
    gap: 8px;
  }
  .mobile-nav .nav-list_sections li:before {
    font-family: "Inter", sans-serif;
    font-size: 7px;
    line-height: 1;
    content: counter(nav, decimal-leading-zero);
    color: rgba(100, 8, 50, 0.5019607843);
    letter-spacing: -0.05em;
  }
  .mobile-nav .nav-list_sections li a {
    font-size: 15px;
    line-height: 1.12;
  }
  .mobile-nav .mobile_new-page {
    margin-top: 30px;
    padding-bottom: 30px;
    display: block;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.05em;
  }
  .mobile-nav .mobile_contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    align-items: center;
    margin-top: 60px;
  }
  .mobile-nav .mobile_contact .privacy-link {
    font-size: 15px;
    line-height: 1.12;
    letter-spacing: 0;
  }
}
@media (max-width: 567px) {
  .mobile-nav {
    padding-top: 95px;
    max-height: 100vh;
    overflow: scroll;
    gap: 40px;
  }
  .mobile-nav .mobile-nav-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mobile-nav .mobile_new-page {
    padding: 20px 0 20px 10px;
    margin-top: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-image: repeating-linear-gradient(90deg, #000000 0 3px, transparent 3px 6px) 3 0 0 0;
    border-image-slice: 3 0 3 0;
  }
  .mobile-nav .mobile-nav-footer {
    display: grid;
    grid-template-columns: 1fr;
  }
  .mobile-nav .mobile-nav-footer .mobile-nav-footer_col {
    gap: 5px;
  }
  .mobile-nav .mobile_contact {
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mobile-nav .mobile_contact .privacy-link {
    order: -1;
  }
}
/* ============================= */
/* Opened state animation/styles */
/* ============================= */
body.nav-open {
  overflow: hidden;
}

body.nav-open .burger span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.nav-open .burger span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

body.nav-open .menu-text__mobile {
  opacity: 0;
}

.burger {
  position: relative;
  z-index: 2100;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1140px) {
  .burger {
    display: block;
    z-index: 1001;
  }
}
.nav-wrapper.is-open ~ .burger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-wrapper.is-open ~ .burger span:nth-child(2) {
  opacity: 0;
}

.nav-wrapper.is-open ~ .burger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.logo-section {
  background: #00323C;
  padding-top: 30px;
  color: #E1DCD5;
  height: calc(100vh - 210px);
}
@media (min-width: 1140px) {
  .logo-section {
    min-height: 600px;
  }
}
.logo-section .transforming-logo {
  padding-bottom: 90px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .logo-section .transforming-logo {
    padding-bottom: 30px;
  }
}
.logo-section .scroll-down {
  font-size: 12px;
  line-height: 112%;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  max-width: 43px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.logo-section .logo-section_subtext {
  font-size: 36px;
  letter-spacing: -0.05em;
  line-height: 112%;
}
@media (max-width: 1140px) {
  .logo-section {
    padding-top: 105px;
    height: auto;
    padding-bottom: 112px;
  }
}
@media (max-width: 767px) {
  .logo-section .logo-section_subtext {
    text-align: center;
    font-size: 24px;
  }
}

.heading-divider {
  margin-top: 10px;
  border: 5px solid;
  border-image: repeating-linear-gradient(90deg, rgba(100, 8, 50, 0.5) 0 1px, transparent 1px 9px) 5;
}

.advantage-card {
  counter-increment: advantages;
  grid-column: span 3;
  background: #A0D7FF;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  padding: 30px;
  font-size: 20px;
  line-height: 112%;
  letter-spacing: 0;
}
.advantage-card:before {
  content: counter(advantages, decimal-leading-zero);
  font-weight: 800;
  letter-spacing: -0.07em;
}
.advantage-card .advantage-text {
  min-height: 68px;
}
.advantage-card .advantage-image {
  width: 100%;
  max-width: 100px;
}

@media (max-width: 1024px) {
  .advantage-card {
    grid-column: span 8;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    font-size: 18px;
    height: auto;
    align-items: center;
  }
  .advantage-card:before {
    grid-column: span 2;
  }
  .advantage-card .advantage-text {
    min-height: unset;
    grid-column: span 4;
  }
  .advantage-card img.advantage-image {
    grid-column: 7/span 2;
    justify-self: end;
    align-self: end;
    width: 64px;
    max-width: none;
    height: auto;
    display: block;
  }
}
@media (max-width: 767px) {
  .advantage-card {
    grid-column: span 8;
  }
  .advantage-card:before {
    display: none;
  }
  .advantage-card .advantage-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: span 6;
  }
  .advantage-card .advantage-text:before {
    content: counter(advantages, decimal-leading-zero);
    font-weight: 800;
    letter-spacing: -0.07em;
  }
  .advantage-card img.advantage-image {
    align-self: center;
  }
}
.branch-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.branch-card .branch-card_indicator {
  display: none;
  transition: all 0.3s ease-out;
}
@media (max-width: 1023px) {
  .branch-card .branch-card_indicator {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 37px;
    height: 37px;
    border-radius: 37px;
    z-index: 2;
  }
}
.branch-card .branch-name {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 112%;
  letter-spacing: 0;
  padding: 10px 10px 5px 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.branch-card:nth-child(even) .branch-name {
  background: #A0D7FF;
  color: #00323C;
}
.branch-card:nth-child(even) .branch-description {
  background: url("../img/Union-figure-people-blue.svg") no-repeat left center;
  background-size: contain;
  color: #000000;
}
.branch-card:nth-child(odd) .branch-name {
  background: #E1DCD5;
  color: #640832;
}
.branch-card:nth-child(odd) .branch-description {
  background: url("../img/union-figure-people-yellow.svg") no-repeat left center;
  background-size: contain;
  color: #640832;
}
@media (hover: hover) and (pointer: fine) {
  .branch-card:hover .branch-description {
    transform: translateX(0);
  }
  .branch-card:hover .branch-card_indicator {
    transform: rotate(45deg);
  }
  .branch-card:hover .branch-card_image {
    transform: scale(1.15);
  }
}
.branch-card.is-open .branch-description {
  transform: translateX(0);
}
.branch-card.is-open .branch-card_indicator {
  transform: rotate(45deg);
}
.branch-card.is-open .branch-card_image {
  transform: scale(1.15);
}
.branch-card .branch-card_image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.branch-card .branch-description {
  position: absolute;
  max-width: 322px;
  height: 220px;
  display: flex;
  align-items: center;
  bottom: 10px;
  padding: 20px 48px 20px 20px;
  transition: all 0.6s cubic-bezier(0, 0.55, 0.45, 1);
  transform: translateX(-100%);
}
.branch-card .branch-description .branch-description_text {
  font-size: 16px;
  line-height: 130%;
  padding-left: 23px;
  position: relative;
}
.branch-card .branch-description .branch-description_text:before {
  content: "→";
  position: absolute;
  left: 0;
}

.hero-pin {
  position: relative;
  height: 100vh;
  min-height: 100vh;
}

.hero-inner {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-center {
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.logo-layer {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6vw;
  z-index: 12;
}

.logo {
  position: relative;
  width: 210px;
  height: 210px;
  box-sizing: border-box;
  padding: 20px;
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 112%;
  display: flex;
  flex-shrink: 0;
  flex-grow: 0;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.logo:nth-child(odd) {
  border-radius: 20px;
}
.logo:nth-child(even) {
  border-radius: 999px;
}

.enlarging-text {
  font-style: italic;
  font-weight: 800;
  color: black;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .hero-inner {
    display: flex;
    place-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .hero-inner .enlarging-text {
    font-size: clamp(140px, 140px + 40 * (100vw - 768px) / 256, 180px);
  }
  .logo-layer {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .logo {
    width: 168px;
    height: 168px;
    font-size: 14px;
  }
  .logo:nth-child(even) {
    border-radius: 20px;
  }
  .logo img {
    max-height: 55px;
    max-width: 55px;
  }
}
@media (max-width: 767px) {
  .hero-inner .enlarging-text {
    font-size: clamp(65px, 65px + 35 * (100vw - 375px) / 392, 100px);
  }
  .hero-pin {
    position: relative;
    height: auto;
    min-height: auto;
  }
  .hero-pin .hero-inner {
    height: auto;
    min-height: auto;
  }
  .logo-layer {
    margin-top: 20px;
    box-sizing: border-box;
    padding: 0 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .logo-layer .logo {
    box-sizing: border-box;
    border-radius: 10px;
    text-align: left;
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: 22.5px 20px;
  }
  .logo-layer .logo div {
    max-width: 160px;
  }
  .logo-layer .logo img {
    max-height: 55px;
    max-width: 55px;
    width: 55px;
  }
}
.clients-row {
  border-top: 0.5px solid transparent;
  border-image: repeating-linear-gradient(90deg, #000000 0 3px, transparent 3px 6px) 3 0 0 0;
  padding: 20px 0;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.clients-row.is-active {
  padding-bottom: 40px;
  padding-top: 40px;
  opacity: 1;
}
.clients-row.is-active .client-name {
  font-size: 36px;
  letter-spacing: -0.05em;
}
.clients-row.is-active .client-logo_container .client-logo_wrapper {
  box-sizing: border-box;
  opacity: 1;
}
.clients-row .client-name {
  transition: all 0.3s ease;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0;
  color: #000000;
}
.clients-row .client-logo_container {
  position: relative;
  height: 100%;
  pointer-events: none;
}
.clients-row .client-logo_container .client-logo_wrapper {
  opacity: 0;
  transition: all 0.3s ease;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  max-width: 215px;
  aspect-ratio: 1;
  position: absolute;
  bottom: -10px;
}
.clients-row .client-branch {
  grid-column: 9/span 4;
}

@media (max-width: 1023px) {
  .clients-row {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 0;
  }
  .clients-row:hover, .clients-row.is-active {
    padding-bottom: 30px;
    padding-top: 30px;
  }
  .clients-row:hover .client-name, .clients-row.is-active .client-name {
    font-size: 26px;
  }
  .clients-row .client-name {
    font-size: 18px;
  }
  .clients-row .client-branch {
    font-size: 15px;
  }
  .clients-row .client-logo_container {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 177px;
    bottom: auto;
    height: 177px;
  }
  .clients-row .client-logo_container .client-logo_wrapper {
    position: static;
    width: 100%;
    height: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .clients-row:hover {
    padding-bottom: 40px;
    padding-top: 40px;
    opacity: 1;
  }
  .clients-row:hover .client-name {
    font-size: 36px;
    letter-spacing: -0.05em;
  }
  .clients-row:hover .client-logo_wrapper {
    opacity: 1;
  }
}
@media (hover: none) {
  .clients-row:hover {
    padding: 20px 0;
    opacity: 0.7;
  }
  .clients-row:hover .client-logo_wrapper {
    opacity: 0;
  }
}
.cta-red {
  background: #640832;
  padding: 80px 0 20px;
  color: #E1DCD5;
}
.cta-red .cta-image_wrapper {
  position: relative;
  width: 100%;
}
.cta-red .cta-image_wrapper:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: #EB2907;
  top: 0;
  left: 0;
  transform: translateX(-99%);
  z-index: 0;
}
.cta-red .cta-image_wrapper .cta-image {
  width: 100%;
  position: relative;
  display: block;
  z-index: 1;
}
.cta-red .cta-to-end {
  grid-column: span 2/-1;
}
@media (max-width: 1039px) {
  .cta-red .cta-to-end {
    grid-column: span 2;
  }
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee__track {
  display: flex;
  flex: 0 0 auto;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  gap: 10px;
  animation: marquee-scroll var(--marquee-duration, 20s) linear infinite;
}

@keyframes marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1px * var(--marquee-distance)), 0, 0);
  }
}
.marquee__content {
  display: inline-flex;
  flex: 0 0 auto;
}

.marquee__list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.marquee__list.images-marquee {
  gap: 10px;
  align-items: flex-start;
}
.marquee__list.images-marquee .marquee__item {
  padding: 0;
  flex: 0 0 auto;
}
.marquee__list.images-marquee .marquee__item:nth-child(odd) {
  width: 397px;
}
.marquee__list.images-marquee .marquee__item:nth-child(even) {
  width: 333px;
}
.marquee__list.images-marquee .marquee__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
@media (max-width: 1023px) {
  .marquee__list.images-marquee .marquee__item img {
    border-radius: 10px;
  }
}

.marquee__item {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee__item--text {
  text-transform: uppercase;
  font-size: clamp(28px, 28px + 46 * (100vw - 320px) / 1600, 74px);
  line-height: 1;
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
  position: relative;
}
.marquee__item--text:nth-child(even) {
  top: 10px;
}
@media (max-width: 1039px) {
  .marquee__item--text:nth-child(even) {
    top: 5px;
  }
}
@media (max-width: 767px) {
  .marquee__item--text:nth-child(even) {
    top: 2px;
  }
}

.container-reviews {
  width: 100%;
  max-width: 789px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .container-reviews {
    max-width: 530px;
  }
}

.review-item {
  background: white;
  border-radius: 40px;
  padding: 50px 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  transition: all 0.25s ease-in-out;
  position: relative;
  box-sizing: border-box;
}
.review-item.swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
}
.review-item.swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.85);
  opacity: 0.7;
}
.review-item.swiper-slide:not(.swiper-slide-active) * {
  filter: blur(2px);
  opacity: 0.4;
}
.review-item .review-content {
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.05em;
}
.review-item .review-content .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-item .review-content .review-header .review-author {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
}
.review-item .review-content .review-header .review-author__photo {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.review-item .review-content .review-header .review-author__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-item .review-content .review-header .review-author__name {
  line-height: 100%;
  letter-spacing: -0.07em;
  margin-bottom: 5px;
}
.review-item .review-content .review-header .review-author__position {
  line-height: 130%;
  letter-spacing: 0;
  opacity: 0.7;
}
.review-item .review-text {
  margin-top: 30px;
  position: relative;
}
.review-item .review-text p {
  max-height: 256px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.review-item .review-text p::-webkit-scrollbar {
  display: none;
}
.review-item .review-text::after {
  content: "";
  display: block;
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  transition: all 0.25s ease-out;
}
.review-item .review-text.is-scroll-end::after {
  opacity: 0;
}

.swiper-controls {
  margin-top: 127px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.swiper-controls .swiper-next, .swiper-controls .swiper-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  border-radius: 10px;
  border: 1px solid #640832;
  transition: all 0.25s ease-in-out;
}
.swiper-controls .swiper-next img, .swiper-controls .swiper-prev img {
  width: 30px;
  height: 30px;
}
.swiper-controls .swiper-next.swiper-button-disabled, .swiper-controls .swiper-prev.swiper-button-disabled {
  opacity: 0.5;
}
.swiper-controls .swiper-next {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .swiper-controls {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .review-item {
    padding: 20px;
  }
  .review-item .review-content {
    font-size: 14px;
  }
  .review-item .review-content .review-header {
    align-items: flex-end;
  }
  .review-item .review-content .review-header .review-author {
    flex-direction: column;
    align-items: start;
  }
  .swiper-controls {
    margin-top: 40px;
  }
  .swiper-controls .swiper-next, .swiper-controls .swiper-prev {
    width: 50px;
    height: 50px;
  }
  .swiper-controls .swiper-next img, .swiper-controls .swiper-prev img {
    width: 14px;
    height: 14px;
  }
}
.spacer {
  height: 100vh;
  display: grid;
  place-items: center;
}

/* SECTION */
.pin-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* IMAGE */
.pin-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* harmless here, future-proof */
}

.overlay {
  position: absolute;
  inset: 0;
  background: #E1DCD5;
  mix-blend-mode: multiply;
  z-index: 2;
}

/* INNER CONTENT */
.team-inner-top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 80%;
  background: transparent;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  mix-blend-mode: normal;
  backdrop-filter: none;
}
.team-inner-top:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #E1DCD5;
  mix-blend-mode: screen;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 0;
}
.team-inner-top .team__hero-text-container {
  position: relative;
  z-index: 1;
  color: black;
}
.team-inner-top .team__hero-text-container .team__hero-text {
  font-size: clamp(54px, 220px + 166 * (100vw - 320px) / 1600, 220px);
  line-height: 1;
  font-weight: 800;
}
@media (max-width: 767px) {
  .team-inner-top {
    height: 221px;
  }
}

@media (max-width: 768px) {
  :root {
    --innerH: 88%;
  }
}
.pin-section {
  position: relative;
  overflow: hidden;
}

.pin-img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 500px;
  object-fit: cover;
}

/* panel sits above the image */
.inner {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 80%;
  z-index: 2;
}

/* SVG becomes your panel */
.hero-cutout {
  width: 100%;
  height: 100%;
  display: block;
}

.panel-rect {
  fill: #E1DCD5; /* panel color */
}

.cut-text {
  font: 800 clamp(54px, 10vw, 220px) system-ui, sans-serif;
  fill: black; /* black in mask = hole */
}

.values-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.values-wrapper .value-item {
  padding: 20px 40px 15px 30px;
  color: #640832;
  border-radius: 40px;
  border: 1px solid rgba(100, 8, 50, 0.5019607843);
  font-size: clamp(17px, 17px + 11 * (100vw - 360px) / 1080, 28px);
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1000ms ease, transform 600ms ease;
  transition-delay: var(--inview-delay, 0ms);
  will-change: opacity, transform;
}
.values-wrapper .value-item.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .values-wrapper .value-item {
    padding: 15px 15px 10px;
  }
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 10px;
  row-gap: 60px;
}
.team-grid .team-item {
  grid-column: span 3;
}
.team-grid .team-item .team-image {
  background: #E1DCD5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.team-grid .team-item .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}
.team-grid .team-item .team-name {
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.05em;
  margin-bottom: 5px;
}
.team-grid .team-item .team-position {
  font-size: 16px;
  line-height: 112%;
  letter-spacing: -0.07em;
  opacity: 0.6;
}
.team-grid .team-item.is-inview .team-image img {
  opacity: 1;
  transform: translateY(0);
}
.team-grid .team-item:nth-child(12n+1) {
  grid-column: 1/span 3;
}
.team-grid .team-item:nth-child(12n+2) {
  grid-column: 7/span 3;
}
.team-grid .team-item:nth-child(12n+3) {
  grid-column: 10/span 3;
}
.team-grid .team-item:nth-child(12n+4) {
  grid-column: 1/span 3;
}
.team-grid .team-item:nth-child(12n+5) {
  grid-column: 4/span 3;
}
.team-grid .team-item:nth-child(12n+6) {
  grid-column: 10/span 3;
}
.team-grid .team-item:nth-child(12n+7) {
  grid-column: 4/span 3;
}
.team-grid .team-item:nth-child(12n+8) {
  grid-column: 7/span 3;
}
.team-grid .team-item:nth-child(12n+9) {
  grid-column: 10/span 3;
}
.team-grid .team-item:nth-child(12n+10) {
  grid-column: 1/span 3;
}
.team-grid .team-item:nth-child(12n+11) {
  grid-column: 4/span 3;
}
.team-grid .team-item:nth-child(12n+12) {
  grid-column: 7/span 3;
}
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .team-grid .team-item {
    grid-column: auto !important;
  }
}
@media (max-width: 567px) {
  .team-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.press-list {
  display: flex;
  flex-direction: column;
}
.press-list .press-list__item {
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px 0;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.05em;
  border-top: 0.5px solid transparent;
  border-image: repeating-linear-gradient(90deg, #000000 0 3px, transparent 3px 6px) 3 0 0 0;
}
.press-list .press-list__item .press-item_name {
  max-width: 482px;
}

@media (max-width: 1024px) {
  .press-list {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .press-list .press-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.video-play {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  z-index: 999;
  background: #A0D7FF;
  color: black;
  text-align: center;
}

@media (min-width: 1024px) {
  .fullsize-video-bg, .team_video-section {
    overflow: hidden;
    cursor: none;
  }
  .fullsize-video-bg .video-play, .team_video-section .video-play {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .fullsize-video-bg:hover .video-play, .team_video-section:hover .video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (max-width: 1024px) {
  .video-play {
    width: 80px;
    height: 80px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .video-play {
    width: 80px;
    height: 80px;
    bottom: 0;
    transform: translate(-50%, 50%);
  }
}
.team-hero-section {
  min-height: 180svh;
  position: relative;
}
.team-hero-section .team-scroll-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.team-hero-section .team_hero-content {
  position: absolute;
  height: 80vh;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  width: 100%;
}
.team-hero-section .team_hero-content .team_hero-static-bg {
  width: 100%;
  height: 100%;
  background: #E1DCD5;
}
.team-hero-section .team_hero-content .team_hero-img-container {
  position: relative;
  display: flex;
}
.team-hero-section .team_hero-content .team_hero-img-container .team_hero-substract-img {
  position: relative;
  z-index: 2;
  width: 100%;
}
.team-hero-section .team_hero-content .team_hero-img-container .team_hero-overlay-blur {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 1039px) {
  .team-hero-section .team_hero-content {
    height: 60vh;
  }
}
@media (max-width: 767px) {
  .team-hero-section {
    height: 500px;
    min-height: 90vh;
  }
  .team-hero-section .team_hero-content {
    height: 400px;
  }
}
.fullsize-video-bg {
  margin-top: -60px;
  padding-top: 20px;
  position: relative;
  color: white;
  height: 100vh;
  min-height: 100vh;
  max-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1140px) {
  .fullsize-video-bg {
    margin-top: 0;
  }
}
#video-viewport {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.fullsize-video-bg:before {
  content: "";
  background: rgba(0, 42, 50, 0.8980392157);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fullsize-video-bg .inner {
  display: table;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.fullsize-video-bg .inner > .hero-text {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  text-transform: uppercase;
  font-size: clamp(28px, 28px + 46 * (100vw - 320px) / 1600, 74px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.fullsize-video-bg .inner > .hero-text .line {
  display: block;
  overflow: hidden; /* optional for clip-style effects */
}

@media (max-width: 1024px) {
  .fullsize-video-bg {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }
  #video-viewport {
    position: relative;
    overflow: hidden;
    height: auto !important;
    width: 100% !important;
  }
  .fullsize-video-bg {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 0;
  }
  .fullsize-video-bg .inner {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
  video {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
  }
}
.second-line-heading {
  display: block;
  text-align: right;
}
@media (max-width: 1140px) {
  .second-line-heading {
    display: inline;
    text-align: left;
  }
}

#services {
  position: relative;
}
#services .services-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
  z-index: 5;
}
#services .services-overlay .services-overlay__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
}
#services .services-overlay .services-overlay__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
#services .services-overlay .services-media {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 350px;
  height: 200px;
  overflow: hidden;
}
#services .services-overlay .services-media .services-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: transform 400ms ease;
  will-change: transform;
}
#services .services-overlay .services-media .services-media__img.is-active {
  z-index: 2;
}

/* Sticky subsections (working version) */
.service-subsection {
  position: sticky;
  min-height: 100vh;
  z-index: 1;
  top: 0;
}
.service-subsection .service-subsection__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
}
.service-subsection .service-title {
  grid-column-start: 4;
}
.service-subsection .service-counter {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: -0.07em;
  margin-top: 38px;
}
.service-subsection .service-counter .current-service, .service-subsection .service-counter .service-count {
  display: inline-block;
  padding: 4px 5px 0;
}
.service-subsection .service-list .service-list_item {
  padding: 20px 0 20px 34px;
  font-size: 16px;
  line-height: 130%;
  position: relative;
  border-top: 0.5px solid transparent;
}
.service-subsection .service-list .service-list_item:before {
  content: "→";
  position: absolute;
  left: 0;
  top: 20px;
}
.service-subsection .service-image_mobile {
  display: none;
  width: 100%;
  border-radius: 10px;
  margin-top: 60px;
}
.service-subsection.service-1, .service-subsection.service-6 {
  background: #00323C;
  color: #E1DCD5;
}
.service-subsection.service-1 .service-counter .current-service, .service-subsection.service-6 .service-counter .current-service {
  background: #A0D7FF;
  color: #00323C;
}
.service-subsection.service-1 .service-list .service-list_item, .service-subsection.service-6 .service-list .service-list_item {
  border-image: repeating-linear-gradient(90deg, #E1DCD5 0 3px, transparent 3px 6px) 3 0 0 0;
}
.service-subsection.service-1 .service-list .service-list_item:before, .service-subsection.service-6 .service-list .service-list_item:before {
  color: #A0D7FF;
}
.service-subsection.service-2 {
  background: #A0D7FF;
  color: #00323C;
}
.service-subsection.service-2 .service-counter .current-service {
  background: #00323C;
  color: #A0D7FF;
}
.service-subsection.service-2 .service-list .service-list_item {
  border-image: repeating-linear-gradient(90deg, #000000 0 3px, transparent 3px 6px) 3 0 0 0;
}
.service-subsection.service-2 .service-list .service-list_item:before {
  color: #00323C;
}
.service-subsection.service-3 {
  background: #0F0F0F;
  color: #E1DCD5;
}
.service-subsection.service-3 .service-counter .current-service {
  background: #A0D7FF;
  color: #000;
}
.service-subsection.service-3 .service-list .service-list_item {
  border-image: repeating-linear-gradient(90deg, #E1DCD5 0 3px, transparent 3px 6px) 3 0 0 0;
}
.service-subsection.service-3 .service-list .service-list_item:before {
  color: #A0D7FF;
}
.service-subsection.service-4 {
  background: #640832;
  color: #E1DCD5;
}
.service-subsection.service-4 .service-counter .current-service {
  background: #FF0000;
  color: #00323C;
}
.service-subsection.service-4 .service-list .service-list_item {
  border-image: repeating-linear-gradient(90deg, #E1DCD5 0 3px, transparent 3px 6px) 3 0 0 0;
}
.service-subsection.service-4 .service-list .service-list_item:before {
  color: #FF0000;
}
.service-subsection.service-5 {
  background: #E1DCD5;
  color: #000;
}
.service-subsection.service-5 .service-counter .current-service {
  background: #640832;
  color: #E1DCD5;
}
.service-subsection.service-5 .service-list .service-list_item {
  border-image: repeating-linear-gradient(90deg, #000000 0 3px, transparent 3px 6px) 3 0 0 0;
}
.service-subsection.service-5 .service-list .service-list_item:before {
  color: #640832;
}

@media (min-width: 1920px) {
  .service-subsection {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 1023px) {
  #services .services-overlay .services-media {
    width: 206px;
    height: 126px;
  }
  .service-subsection {
    min-height: auto;
    padding-bottom: 120px;
  }
  .service-subsection .service-counter {
    justify-content: start;
    gap: 75px;
  }
}
@media (max-width: 767px) {
  .services-overlay {
    display: none;
  }
  .service-subsection {
    min-height: unset;
    padding-bottom: 20px;
  }
  .service-subsection .service-counter {
    margin-bottom: 20px;
    margin-top: unset;
  }
  .service-subsection .service-list .service-list_item {
    font-size: 15px;
  }
  .service-subsection .service-image_mobile {
    display: block;
  }
}
@media (max-width: 480px) {
  .service-subsection {
    position: relative;
  }
}
footer {
  background: #00323C;
  padding: 40px 0;
}
footer .footer-top {
  padding-top: 20px;
  border-top: 1px solid rgba(160, 215, 255, 0.5);
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.07em;
  color: #A0D7FF;
}
footer .footer-logo_wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
}
footer .footer-logo_wrapper .logo_left-part {
  flex: 0 0 20.2%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
footer .footer-logo_wrapper .logo_left-part img {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
footer .footer-logo_wrapper .logo_right-part {
  flex: 0 0 33.3333%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
footer .footer-logo_wrapper .logo_right-part img {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
footer .footer-logo_wrapper .logo_middle-part {
  flex: 0;
  min-width: 0;
  overflow: hidden;
  transition: flex-grow 0.5s ease-out;
  background: #A0D7FF;
}
footer .footer-logo_wrapper .logo_middle-part .logo_middle-content {
  overflow: hidden;
  color: #00323C;
  font-size: clamp(17px, 17px + 11 * (100vw - 320px) / 1600, 28px);
  letter-spacing: -0.05em;
  font-weight: 800;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0 16px;
  min-width: 0;
}
footer .footer-logo_wrapper .logo_middle-part .logo_middle-content .footer-socials {
  display: flex;
  gap: 20px;
}
footer .footer-logo_wrapper .logo_middle-part .logo_middle-content .footer-socials a {
  width: 30px;
  height: 30px;
}
footer .footer-logo_wrapper .logo_middle-part .logo_middle-content .footer-socials a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .footer-logo_wrapper.is-expanded .logo_middle-part {
  flex-grow: 1;
}

@media (max-width: 1024px) {
  footer {
    padding: 30px 0;
  }
  footer .footer-top {
    padding-top: 0;
    position: relative;
    row-gap: 30px;
    border-top: none;
  }
  footer .footer-top:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    height: 1px;
    background: rgba(160, 215, 255, 0.5);
  }
  footer .footer-logo_wrapper .logo_left-part {
    flex: 0 0 20.1%;
  }
  footer .footer-logo_wrapper .logo_middle-part .logo_middle-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 30px 0;
  }
  footer .footer-top {
    padding-top: 0;
    position: relative;
    row-gap: 5px;
    border-top: none;
  }
  footer .footer-top:before {
    content: "";
    display: none;
  }
  footer .footer-top div:nth-child(1) {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(160, 215, 255, 0.5);
    order: 1;
  }
  footer .footer-top div:nth-child(2) {
    order: 4;
  }
  footer .footer-top div:nth-child(3) {
    margin-top: 10px;
    margin-bottom: 40px;
    order: 2;
  }
  footer .footer-top div:nth-child(4) {
    order: 3;
  }
  footer .footer-logo_wrapper .logo_middle-part .logo_middle-content {
    padding: 0;
  }
  footer .footer-logo_wrapper .logo_middle-part .logo_middle-content .footer-socials a {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 1024px) {
  .branch-responsive-title {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .branch-responsive-title {
    margin-bottom: 40px;
  }
}

.fullsize-image.parallax {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.after-photo {
  position: relative;
  z-index: 2;
  background: #ECEAEA;
}

.parallax-img {
  width: 100vw;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.forbes-section {
  padding: 60px 0;
  background: #640832;
  color: #E1DCD5;
}
.forbes-section .forbes-left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 9px;
}
.forbes-section .forbes-left div:first-child img {
  margin-left: -40px;
}
.forbes-section .forbes-left div:last-child {
  margin-top: -20px;
}
.forbes-section .forbes-left div:last-child div {
  margin-left: -30px;
}
.forbes-section .forbes-left .forbes-text_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.forbes-section .forbes-left .forbes-text_wrapper .forbes-text {
  font-size: clamp(54px, 220px + 166 * (100vw - 375px) / 1065, 220px);
  line-height: 100%;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #EB3B28;
}
.forbes-section .forbes-left .forbes-text_wrapper .forbes-text:last-child {
  margin-top: -45px;
  margin-right: -60px;
}
.forbes-section .forbes-left .forbes-year {
  display: inline-block;
  color: #640832;
  background: #EB3B28;
  padding: 10px 10px 5px;
  font-size: clamp(24px, 36px + 12 * (100vw - 375px) / 1065, 36px);
  line-height: 1;
}

@media (max-width: 1023px) {
  .forbes-section .forbes-left {
    max-width: 72vw;
    margin-bottom: 60px;
  }
  .forbes-section .forbes-left .forbes-text_wrapper {
    gap: 10px;
    flex-direction: row;
  }
  .forbes-section .forbes-left .forbes-text_wrapper .forbes-text {
    font-size: 110px;
  }
  .forbes-section .forbes-left .forbes-text_wrapper .forbes-text:last-child {
    margin-top: unset;
    margin-right: unset;
  }
  .forbes-section .forbes-left div:first-child img {
    margin-left: unset;
  }
  .forbes-section .forbes-left div:last-child {
    margin-top: -26px;
  }
  .forbes-section .forbes-left div:last-child div {
    margin-top: unset;
  }
}
@media (max-width: 767px) {
  .forbes-section .forbes-left {
    margin-bottom: 40px;
  }
  .forbes-section .forbes-left .forbes-text_wrapper .forbes-text {
    font-size: clamp(54px, 54px + 56 * (100vw - 375px) / 392, 110px);
  }
  .forbes-section .forbes-left div:last-child {
    margin-top: -10px;
  }
  .forbes-section .forbes-left div:last-child div {
    margin-left: unset;
  }
}
.error-404 {
  background: #EB3B28;
}
.error-404 #main-content {
  padding-top: 286.5px;
  padding-bottom: 80px;
}
.error-404 #main-content .error-404__wrapper {
  padding: 30px 0;
  position: relative;
}
.error-404 #main-content .error-404__wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.5px;
  background-image: repeating-linear-gradient(to right, currentColor 0 3px, transparent 3px 6px);
}
.error-404 #main-content .error-404__wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5px;
  background-image: repeating-linear-gradient(to right, currentColor 0 3px, transparent 3px 6px);
}
.error-404 #main-content .error-heading {
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  max-width: 250px;
}
.error-404 #main-content .error-text {
  font-size: 20px;
  line-height: 112%;
  margin-bottom: 146.5px;
}

@media (max-width: 1023px) {
  .error-404 #main-content {
    padding-top: 150px;
  }
  .error-404 #main-content .error-heading {
    font-size: 24px;
  }
  .error-404 #main-content .error-text {
    margin-top: 30px;
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .error-404 #main-content .error-404__wrapper {
    padding: 15px 0;
  }
  .error-404 #main-content .error-404__wrapper .error-page-image-union {
    height: 100px;
  }
  .error-404 #main-content .button_link.mod-cta {
    width: 100%;
    box-sizing: border-box;
  }
}
.form-cell {
  grid-row: span 2;
}
.form-cell .contact-form input, .form-cell .contact-form textarea {
  padding: 6px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3019607843);
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.05em;
}
.form-cell .contact-form input:focus-visible, .form-cell .contact-form textarea:focus-visible {
  outline: none;
}
.form-cell .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 1023px) {
  .form-cell .contact-form {
    margin-bottom: 60px;
  }
  .form-cell .contact-form input, .form-cell .contact-form textarea {
    font-size: 18px;
  }
  .form-cell .contact-form .form-group {
    gap: 30px;
  }
}
html {
  overscroll-behavior: none;
}

body {
  font-family: "NeueMachina", sans-serif;
  font-size: 16px;
  line-height: 130%;
  color: #010;
  background: rgb(236, 234, 234);
}

#innerBlock {
  will-change: transform;
}

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ECEAEA;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  will-change: transform, opacity;
}

#page-loader .loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#page-loader .loader-percent {
  font-size: 70px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #00323C;
}

#page-loader .loader-sub {
  font: 500 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-block {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.page-wrapper {
  overflow: clip;
}

main {
  background: #ECEAEA;
}

/* optional: keeps things smooth */
[data-reveal] {
  visibility: hidden;
}

.reveal-line {
  display: block;
  overflow: hidden;
  padding-top: 0.18em;
  margin-top: -0.18em;
}

.reveal-line-inner {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

.is-inview {
  visibility: visible;
}

.is-inview .reveal-line-inner {
  transform: translateY(0);
  transition: transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.is-inview .reveal-line-inner {
  transition-delay: calc(var(--line-index) * 80ms);
}

.team_video-section {
  position: relative;
  overflow-x: clip;
}
.team_video-section:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 42, 50, 0.8980392157);
}

@media (max-width: 1023px) {
  .contact-grid {
    row-gap: 60px;
  }
  .contact-grid .j-address-cell {
    order: 1;
  }
  .contact-grid .phone-cell {
    order: 2;
  }
  .contact-grid .m-address-cell {
    order: 3;
  }
  .contact-grid .mail-cell {
    order: 4;
  }
  .contact-grid .form-cell {
    grid-column: span 8/-1;
  }
  .contact-grid .f-address-cell {
    order: 5;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}
@media (max-width: 767px) {
  .contact-grid {
    row-gap: 40px;
  }
  .contact-grid .phone-cell {
    order: 1;
  }
  .contact-grid .mail-cell {
    order: 2;
  }
  .contact-grid .j-address-cell {
    margin-top: 20px;
    order: 3;
  }
  .contact-grid .f-address-cell {
    order: 4;
    grid-template-columns: 1fr;
  }
  .contact-grid .f-address-cell .intl_address {
    margin-top: 20px;
  }
  .contact-grid .m-address-cell {
    order: 5;
  }
}
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 99999999;
  display: none;
}

.form-modal.is-open {
  display: block;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.form-modal__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 100% - 32px);
  transform: translate(-50%, -48%) scale(0.98);
  opacity: 0;
  border-radius: 18px;
  padding: 22px 20px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transition: transform 220ms ease, opacity 220ms ease;
}

.form-modal.is-open .form-modal__backdrop {
  opacity: 1;
}

.form-modal.is-open .form-modal__card {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.form-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.06);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.form-modal__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(16, 185, 129, 0.12); /* green-ish tint */
  color: rgb(16, 185, 129);
  margin-bottom: 12px;
}

.form-modal__title {
  margin: 0 0 6px;
  font-size: 20px;
}

.form-modal__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.72);
}

.form-modal__btn {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  background: #111;
  color: #fff;
  font-weight: 600;
}

.team-scroll-more {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-content: center;
  align-items: center;
  justify-content: center;
  color: black;
  z-index: -1;
  position: relative;
  text-align: center;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
}
.video-modal .video-modal__close {
  position: absolute;
  top: 20px;
  right: 40px;
  background: #A0D7FF;
  height: 54px;
  width: 54px;
  border-radius: 7px;
  z-index: 2;
  cursor: pointer;
}
.video-modal .video-modal__close:before, .video-modal .video-modal__close:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  top: 50%;
  left: 50%;
  background: black;
}
.video-modal .video-modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.video-modal .video-modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(90px);
  -webkit-backdrop-filter: blur(90px);
}

.video-modal__panel {
  position: relative;
  max-width: 904px;
  margin: 5vh auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.team_video-section video {
  pointer-events: none; /* prevents Safari tap fullscreen */
}

@media (prefers-reduced-motion: reduce) {
  .form-modal__backdrop,
  .form-modal__card {
    transition: none;
  }
}

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