:root {
  --dark: #0f252d;
  --dark-2: #132f39;
  --paper: #f1f0ed;
  --paper-2: #e3e7e8;
  --ink: #0f252d;
  --muted: #9fb1b7;
  --blue: #05a9d1;
  --orange: #b93612;
  --line: rgba(255, 255, 255, .22);
  --line-dark: rgba(15, 37, 45, .16);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--dark);
}

body {
  margin: 0;
  font-family: Geologica, Arial, sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

.back-to-top {
  position: fixed;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 4vh, 46px);
  z-index: 24;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  writing-mode: vertical-rl;
  transform: translateY(0);
  animation: back-to-top-float 2.8s ease-in-out infinite;
  mix-blend-mode: difference;
}

.back-to-top span {
  display: block;
  width: 1px;
  height: 56px;
  background: currentColor;
}

.back-to-top:hover {
  animation-play-state: paused;
}

@keyframes back-to-top-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor input,
  body.has-custom-cursor label {
    cursor: none;
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--blue);
    mix-blend-mode: difference;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(var(--cursor-x, -40px), var(--cursor-y, -40px), 0) translate(-50%, -50%);
    transition: width .2s var(--ease), height .2s var(--ease), opacity .18s ease;
  }

  .custom-cursor.is-visible {
    opacity: 1;
  }

  .custom-cursor.is-on-light {
    background: var(--orange);
  }

  .custom-cursor.is-hovering {
    width: 117px;
    height: 117px;
  }
}

a,
button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(24px, 3.2vw, 52px) clamp(22px, 4vw, 72px);
  pointer-events: none;
  mix-blend-mode: difference;
}

.site-header > * {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  transition: opacity .28s ease, transform .28s var(--ease), visibility .28s ease;
}

.brand img {
  display: block;
  width: clamp(150px, 14vw, 236px);
  height: auto;
}

.brand small {
  display: inline-block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.top-nav {
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
  align-items: center;
}

.top-nav button,
.lang-option {
  position: relative;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 700;
}

.lang-switcher {
  position: relative;
  display: grid;
  justify-items: start;
  padding-bottom: 18px;
  margin-bottom: -18px;
  transition: opacity .28s ease, transform .28s var(--ease), visibility .28s ease;
}

body.header-compact .brand,
body.header-compact .lang-switcher {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-14px);
}

body.header-compact .menu-btn {
  padding-left: 0;
}

body.header-compact .menu-btn::before {
  display: none;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0;
}

.lang span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-4px) rotate(45deg);
  transition: transform .25s var(--ease);
}

.lang-option {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  padding: 0;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s var(--ease);
}

.lang-switcher:hover .lang span,
.lang-switcher.is-open .lang span,
.lang-switcher:focus-within .lang span {
  transform: translateY(4px) rotate(225deg);
}

.lang-switcher:hover .lang-option,
.lang-switcher.is-open .lang-option,
.lang-switcher:focus-within .lang-option {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wpml-ls-statics-footer,
.wpml-ls-statics-post_translations,
footer + .wpml-ls {
  display: none !important;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  padding-left: clamp(18px, 2.5vw, 36px);
}

.menu-btn::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, .28);
}

.menu-btn i {
  display: inline-block;
  width: 42px;
  height: 1px;
  margin-left: 14px;
  background: #fff;
  box-shadow: 0 11px 0 #fff;
  transform: translateY(-5px);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 37, 45, .08);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}

.menu-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
}

.menu-panel {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: min(50vw, 720px);
  min-width: 500px;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(46px, 5vw, 70px) clamp(28px, 4.6vw, 72px) 26px;
  background: #f7f7f5;
  color: var(--ink);
  transform: translateX(105%);
  transition: transform .65s var(--ease);
}

.menu-overlay.is-open .menu-panel {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: clamp(24px, 3.2vw, 52px);
  right: clamp(22px, 4vw, 72px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.menu-close span {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.menu-close span::before,
.menu-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.menu-close span::before {
  transform: rotate(45deg);
}

.menu-close span::after {
  transform: rotate(-45deg);
}

.menu-links {
  align-self: start;
  display: grid;
  gap: 14px;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.menu-links a {
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease;
}

.menu-links a.active,
.menu-links a:hover {
  color: var(--blue);
}

.menu-language {
  display: none;
  align-items: center;
  gap: 14px;
  margin-top: clamp(22px, 4vh, 42px);
  color: rgba(15, 37, 45, .45);
  font-size: clamp(16px, 4.8vw, 22px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
}

.menu-language a {
  color: rgba(15, 37, 45, .52);
  text-decoration: none;
  transition: color .2s ease;
}

.menu-language a.is-active,
.menu-language a:hover {
  color: var(--blue);
}

.menu-contact {
  border-top: 1px solid rgba(15, 37, 45, .36);
  padding-top: 28px;
}

.menu-contact p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(11px, .85vw, 14px);
  font-weight: 700;
  line-height: 1.8;
}

.panel {
  position: relative;
  min-height: 100vh;
  padding: clamp(86px, 9vh, 128px) clamp(22px, 4vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.dark {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
}

.light {
  background: linear-gradient(135deg, var(--paper), var(--paper-2));
  color: var(--ink);
}

.clients,
.blog,
.footer {
  background: var(--dark);
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(15, 37, 45, .02), rgba(15, 37, 45, .48));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  transform: translateY(clamp(24px, 5vh, 58px));
}

.eyebrow {
  display: inline-flex;
  margin-bottom: clamp(18px, 3vh, 34px);
  color: var(--muted);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero h1,
.about h2,
.definition h2,
.activities h2 {
  margin: 0;
  font-size: clamp(58px, 12vw, 176px);
  font-weight: 800;
  line-height: .84;
  letter-spacing: -.085em;
}

h1,
h2,
h3,
h4 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(49px, 10.2vw, 150px);
  letter-spacing: -.0329em;
}

.about h2 {
  font-size: clamp(34px, 7.1vw, 105px);
  letter-spacing: -.0427em;
  word-spacing: .1014em;
}

.lead {
  margin: clamp(68px, 10.1vh, 117px) auto 0;
  max-width: 920px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(13px, 1.8vw, 29px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.wire {
  position: absolute;
  pointer-events: none;
  opacity: .42;
  border: 1px solid currentColor;
  border-radius: 50%;
  filter: blur(.2px);
}

.wire::before,
.wire::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(36deg) scaleX(1.18);
}

.wire::after {
  transform: rotate(-26deg) scaleY(1.16);
}

.wire-big {
  top: 50%;
  left: 50%;
  width: min(54vw, 620px);
  aspect-ratio: 1;
  color: #fff;
  display: none;
  translate: -50% -50%;
}

.wire-big.is-animated {
  display: block;
  opacity: .3;
  border-color: rgba(255, 255, 255, .58);
  background:
    radial-gradient(ellipse 18% 100% at 50% 50%, transparent 96%, rgba(255, 255, 255, .32) 97%, rgba(255, 255, 255, .32) 99%, transparent 100%),
    radial-gradient(ellipse 38% 100% at 50% 50%, transparent 96%, rgba(255, 255, 255, .26) 97%, rgba(255, 255, 255, .26) 99%, transparent 100%),
    radial-gradient(ellipse 100% 18% at 50% 50%, transparent 96%, rgba(255, 255, 255, .34) 97%, rgba(255, 255, 255, .34) 99%, transparent 100%),
    radial-gradient(ellipse 100% 38% at 50% 50%, transparent 96%, rgba(255, 255, 255, .28) 97%, rgba(255, 255, 255, .28) 99%, transparent 100%),
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(255, 255, 255, .22) 50%, transparent calc(50% + .5px)),
    linear-gradient(0deg, transparent calc(50% - .5px), rgba(255, 255, 255, .22) 50%, transparent calc(50% + .5px));
  transform: scaleX(1.12) rotate(-8deg);
  animation: globe-fallback-float 18s ease-in-out infinite;
}

@keyframes globe-spin {
  from { transform: rotate(0deg) scaleX(1.18); }
  to { transform: rotate(360deg) scaleX(1.18); }
}

@keyframes globe-fallback-float {
  0%,
  100% {
    transform: scaleX(1.12) rotate(-8deg) translate3d(0, 0, 0);
  }

  50% {
    transform: scaleX(1.12) rotate(7deg) translate3d(0, 18px, 0);
  }
}

.wire-light {
  top: 14%;
  left: 38%;
  width: min(58vw, 610px);
  aspect-ratio: 1;
  color: #738088;
}

.about {
  --about-pointer-x: 0px;
  --about-pointer-y: 0px;
  --about-pointer-x-soft: 0px;
  --about-pointer-y-soft: 0px;
  display: grid;
  align-content: space-between;
  gap: clamp(34px, 6vh, 72px);
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .2) 1.35px, transparent 1.45px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse at center, #000 0 44%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 44%, transparent 74%);
}

.about::before {
  right: -14%;
  bottom: -34%;
  z-index: -1;
  width: 118%;
  height: 78%;
  border-radius: 50%;
  opacity: .72;
  transform: rotate(-10deg) scaleX(1.16);
  animation: dot-orbit 16s ease-in-out infinite;
}

.about::after {
  left: -18%;
  bottom: -28%;
  z-index: -1;
  width: 76%;
  height: 58%;
  border-radius: 50%;
  opacity: .28;
  transform: rotate(18deg) scaleX(1.28);
  animation: dot-orbit-reverse 20s ease-in-out infinite;
}

@keyframes dot-orbit {
  0% {
    background-position: 0 0;
    opacity: .42;
    transform: rotate(-18deg) scaleX(1.06) translate3d(var(--about-pointer-x), var(--about-pointer-y), 0) scale(.96);
  }
  50% {
    opacity: .9;
    transform: rotate(2deg) scaleX(1.32) translate3d(calc(-9% + var(--about-pointer-x)), calc(-12% + var(--about-pointer-y)), 0) scale(1.12);
  }
  100% {
    background-position: 420px 280px;
    opacity: .42;
    transform: rotate(-18deg) scaleX(1.06) translate3d(var(--about-pointer-x), var(--about-pointer-y), 0) scale(.96);
  }
}

@keyframes dot-orbit-reverse {
  0% {
    background-position: 0 0;
    opacity: .14;
    transform: rotate(28deg) scaleX(1.12) translate3d(var(--about-pointer-x-soft), var(--about-pointer-y-soft), 0) scale(.95);
  }
  50% {
    opacity: .55;
    transform: rotate(4deg) scaleX(1.48) translate3d(calc(12% + var(--about-pointer-x-soft)), calc(-10% + var(--about-pointer-y-soft)), 0) scale(1.14);
  }
  100% {
    background-position: -380px 300px;
    opacity: .14;
    transform: rotate(28deg) scaleX(1.12) translate3d(var(--about-pointer-x-soft), var(--about-pointer-y-soft), 0) scale(.95);
  }
}

.about .big-copy {
  max-width: 1480px;
  margin: clamp(28px, 5vh, 64px) 0 0;
  font-size: clamp(14px, 2.2vw, 33px);
  font-weight: 200;
  line-height: 1.38;
  letter-spacing: -.052em;
}

.bottom-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 90px);
  width: min(980px, 68vw);
  margin-left: auto;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(11px, .98vw, 14px);
  line-height: 1.65;
}

.definition {
  min-height: 100vh;
  overflow: visible;
  padding-top: clamp(126px, 14vh, 190px);
  background: #dfe2e3;
}

.split {
  min-height: calc(100vh - clamp(220px, 26vh, 330px));
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(280px, .84fr) minmax(300px, .72fr);
  gap: clamp(28px, 4.8vw, 72px);
  align-items: stretch;
}

.definition-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.definition h2 {
  font-size: clamp(46px, 6.6vw, 104px);
  letter-spacing: -.0329em;
}

.sub {
  margin: clamp(20px, 3vh, 34px) 0 0;
  color: rgba(15, 37, 45, .86);
  font-size: clamp(24px, 2.4vw, 39px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -.045em;
}

.statement {
  max-width: 430px;
  margin-top: auto;
  padding-top: clamp(48px, 8vh, 86px);
  color: rgba(15, 37, 45, .84);
  font-size: clamp(18px, 1.78vw, 28px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -.035em;
}

.definition-orb {
  --orb-pointer-x: 0px;
  --orb-pointer-y: 0px;
  --orb-rotate-x: 0deg;
  --orb-rotate-y: 0deg;
  align-self: center;
  justify-self: center;
  width: min(34vw, 420px);
  opacity: .72;
  transform-origin: center;
  transform-style: preserve-3d;
  animation: definition-orb-float 20s ease-in-out infinite;
}

.definition-orb svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.orb-lines polygon,
.orb-lines polyline {
  fill: none;
  stroke: rgba(15, 37, 45, .18);
  stroke-width: 1.2;
}

.orb-dots circle {
  --dot-x: 0px;
  --dot-y: 0px;
  fill: rgba(15, 37, 45, .45);
  transform-box: fill-box;
  transform-origin: center;
  animation: definition-dot-pulse 3.6s ease-in-out infinite;
}

.orb-dots circle:nth-child(1),
.orb-dots circle:nth-child(9) {
  --dot-y: -12px;
}

.orb-dots circle:nth-child(2n) {
  --dot-x: 12px;
  --dot-y: -7px;
  animation-delay: .35s;
}

.orb-dots circle:nth-child(3n) {
  --dot-x: -12px;
  --dot-y: 9px;
  animation-delay: .7s;
}

.orb-dots circle:nth-child(4n) {
  --dot-x: 9px;
  --dot-y: 12px;
}

.orb-dots circle:nth-child(5n) {
  --dot-x: -9px;
  --dot-y: -9px;
}

.definition-text {
  max-width: 520px;
  align-self: end;
  margin-top: 0;
  color: rgba(15, 37, 45, .82);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 300;
  line-height: 1.68;
}

@keyframes definition-orb-float {
  0%,
  100% {
    transform: translate3d(var(--orb-pointer-x), var(--orb-pointer-y), 0) rotateX(var(--orb-rotate-x)) rotateY(var(--orb-rotate-y)) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(var(--orb-pointer-x), calc(-3px + var(--orb-pointer-y)), 0) rotateX(var(--orb-rotate-x)) rotateY(var(--orb-rotate-y)) rotate(.8deg) scale(1.004);
  }
}

@keyframes definition-dot-pulse {
  0%,
  100% {
    opacity: .45;
    transform: translate(0, 0) scale(1);
  }
  50% {
    opacity: .95;
    transform: translate(var(--dot-x), var(--dot-y)) scale(1.22);
  }
}

.companies {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1fr);
  gap: clamp(42px, 7vw, 118px);
  align-items: center;
}

.grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, .18) 1.35px, transparent 1.45px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 26%, transparent 58%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0 26%, transparent 58%);
  opacity: .58;
  transform: rotate(90deg) scaleX(.72);
  transform-origin: center;
  animation: companies-dots 12s ease-in-out infinite;
}

.left-title h2 {
  margin: 0;
  font-size: clamp(54px, 6.1vw, 95px);
  font-weight: 800;
  line-height: 1.19;
  letter-spacing: -.0112em;
}

.left-title p {
  margin: clamp(56px, 8vh, 90px) 0 26px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.04em;
}

.left-title span {
  display: block;
  max-width: 559px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 1.55vw, 26px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -.025em;
}

.accordion {
  align-self: center;
  min-height: clamp(520px, 64vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  padding-left: clamp(46px, 4.5vw, 70px);
}

.item {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 3vh, 34px) clamp(50px, 4vw, 72px) clamp(22px, 3vh, 34px) 0;
  transition: border-color .35s ease, color .35s ease;
  cursor: pointer;
}

.item:first-child {
  border-top: 1px solid var(--line);
}

.item small {
  position: absolute;
  top: clamp(25px, 3.2vh, 38px);
  left: clamp(-42px, -3.2vw, -30px);
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
  font-weight: 800;
}

.item h3 {
  margin: 0;
  min-height: 38px;
  display: flex;
  align-items: center;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: -.055em;
}

.item h3 img {
  display: block;
  width: auto;
  max-width: min(190px, 22vw);
  max-height: 42px;
  object-fit: contain;
}

.item button {
  position: absolute;
  inset: 0 0 auto 0;
  height: calc(clamp(22px, 3vh, 34px) + 44px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: clamp(22px, 3vh, 34px);
  right: 0;
  width: auto;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.item p {
  max-width: 660px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(12px, .95vw, 15px);
  font-weight: 300;
  line-height: 1.75;
  transition: max-height .55s var(--ease), margin .55s var(--ease), opacity .35s ease;
  opacity: 0;
}

.item.active {
  border-color: rgba(255, 255, 255, .36);
}

.item.active p {
  max-height: 360px;
  margin-top: 26px;
  opacity: 1;
}

@keyframes companies-dots {
  0% {
    background-position: 0 0;
    opacity: .32;
    transform: rotate(78deg) scaleX(.58) scaleY(.94) translate3d(-2%, 2%, 0);
  }
  50% {
    opacity: .9;
    transform: rotate(108deg) scaleX(.9) scaleY(1.2) translate3d(9%, -10%, 0);
  }
  100% {
    background-position: 460px 320px;
    opacity: .32;
    transform: rotate(78deg) scaleX(.58) scaleY(.94) translate3d(-2%, 2%, 0);
  }
}

.activities {
  display: grid;
  align-content: space-between;
  gap: clamp(54px, 10vh, 118px);
  background: #f4f5f3;
  color: var(--ink);
}

.activities-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: clamp(36px, 8vw, 126px);
  align-items: start;
}

.activities-heading::before {
  content: none;
}

.activities h2 {
  margin: 0;
  font-size: clamp(54px, 6.1vw, 95px);
  line-height: 1.395;
  letter-spacing: -.016em;
}

.activity-intro {
  align-self: start;
  width: min(440px, 100%);
  margin: 0 5vw 0 auto;
  padding-top: 0;
}

.activity-intro h3 {
  margin: 15px 0 0;
  font-size: clamp(30px, 2.8vw, 46px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.04em;
}

.activity-intro p {
  margin: clamp(22px, 4vh, 42px) 0 0;
  max-width: 360px;
  color: rgba(15, 37, 45, .72);
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 300;
  line-height: 1.62;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 8vw, 128px);
  align-items: start;
}

.cards article {
  min-height: 310px;
  display: grid;
  align-content: start;
  padding-top: 0;
  border-top: 0;
  transition: transform .45s var(--ease);
}

.cards article:hover {
  transform: translateY(-12px);
}

.cards small {
  color: rgba(15, 37, 45, .78);
  font-size: 12px;
  font-weight: 700;
}

.cards h4 {
  margin: 8px 0 clamp(28px, 4vh, 44px);
  font-size: clamp(22px, 1.55vw, 28px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}

.cards p {
  margin: 0;
  color: rgba(15, 37, 45, .72);
  font-size: clamp(12px, .95vw, 15px);
  font-weight: 300;
  line-height: 1.78;
}

.cards a {
  width: fit-content;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(34px, 5vh, 58px);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
}

.cards a span {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: width .25s var(--ease);
}

.cards a:hover span {
  width: 48px;
}

.activity-orb {
  position: absolute;
  right: clamp(-170px, -8vw, -70px);
  top: 18%;
  z-index: -1;
  width: min(37vw, 520px);
  color: rgba(15, 37, 45, .26);
  opacity: .64;
  transform-origin: center;
  animation: activity-orb-float 8s ease-in-out infinite;
}

.activity-orb svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.activity-orb circle,
.activity-orb path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 9 13;
  animation: activity-line-flow 4.8s linear infinite;
}

.activity-orb circle:nth-child(2),
.activity-orb path:nth-child(2) {
  animation-duration: 6.2s;
  animation-direction: reverse;
}

.activity-orb path:nth-child(4),
.activity-orb path:nth-child(5) {
  stroke-width: 1.25;
  animation-duration: 3.8s;
}

@keyframes activity-orb-float {
  0%,
  100% {
    opacity: .5;
    transform: translate3d(0, 0, 0) rotate(-4deg) scale(.98);
  }
  50% {
    opacity: .82;
    transform: translate3d(-42px, 24px, 0) rotate(9deg) scale(1.07);
  }
}

@keyframes activity-line-flow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -88;
  }
}

.clients {
  display: grid;
  align-content: start;
  gap: clamp(54px, 8vh, 96px);
}

.clients h2 {
  margin: 0;
  font-size: clamp(58px, 7.2vw, 124px);
  line-height: .9;
  letter-spacing: -.058em;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .34);
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.client-logo {
  min-height: clamp(132px, 18vh, 205px);
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .34);
  transition: background-color .3s ease, border-color .3s ease;
}

.client-logo img {
  display: block;
  max-width: min(150px, 80%);
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .9;
  transition: opacity .25s ease, transform .25s var(--ease);
}

.client-logo:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.client-logo:hover {
  background: rgba(255, 255, 255, .045);
  border-color: rgba(255, 255, 255, .58);
}

.blog {
  height: 85vh;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(340px, .92fr) minmax(460px, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: clamp(24px, 4vw, 72px);
  row-gap: clamp(18px, 4vh, 38px);
  align-items: stretch;
  padding-block: clamp(26px, 5vh, 56px);
}

.blog-heading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.blog-heading h2 {
  margin: 0;
  font-size: clamp(58px, 7.2vw, 124px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.048em;
}

.definition h2,
.left-title h2,
.activities h2,
.clients h2,
.blog-heading h2 {
  margin: 0;
  font-size: clamp(54px, 6.1vw, 95px);
  font-weight: 800;
  line-height: 1.19;
  letter-spacing: -.0112em;
}

.blog-heading a,
.archive-post-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  white-space: nowrap;
}

.blog-heading a span,
.archive-post-link span {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, .42);
  transition: width .25s var(--ease), background-color .25s ease;
}

.blog-heading a:hover span,
.archive-post-link:hover span {
  width: 48px;
  background: #fff;
}

.blog-feature {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.blog-feature-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1.65s ease, transform 2.4s var(--ease);
}

.blog-feature-image.is-active {
  opacity: .78;
  transform: scale(1.015);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 0;
  border-left: 1px solid rgba(255, 255, 255, .3);
}

.blog-post {
  min-height: 0;
  display: grid;
  align-content: space-between;
  gap: clamp(18px, 4vh, 52px);
  padding: clamp(18px, 3vh, 34px) clamp(24px, 3.4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  text-decoration: none;
  transition: background-color .25s ease, border-color .25s ease, transform .4s var(--ease);
}

.blog-post:nth-child(n + 3) {
  border-bottom: 0;
}

.blog-post time {
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 500;
}

.blog-post h3 {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 1.35vw, 25px);
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: -.035em;
}

.blog-post:hover,
.blog-post.active {
  background: rgba(255, 255, 255, .035);
  border-color: rgba(255, 255, 255, .48);
}

.blog-post:hover {
  transform: translateY(-6px);
}

.blog-archive {
  min-height: 100vh;
  padding: clamp(120px, 14vh, 180px) clamp(22px, 4vw, 72px) clamp(80px, 12vh, 150px);
  background: var(--dark);
  color: #fff;
}

.blog-archive-hero {
  display: grid;
  gap: clamp(10px, 1.8vh, 18px);
  margin-bottom: clamp(54px, 8vh, 94px);
}

.blog-archive-hero p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.blog-archive-hero h1 {
  margin: 0;
  font-size: clamp(58px, 8.5vw, 150px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.052em;
}

.blog-archive-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.archive-post {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: stretch;
  padding: clamp(30px, 5vh, 62px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.archive-post-image {
  min-height: clamp(220px, 28vw, 360px);
  overflow: hidden;
}

.archive-post-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  transform: scale(1.01);
  transition: opacity .35s ease, transform .6s var(--ease);
}

.archive-post:hover .archive-post-image img {
  opacity: .9;
  transform: scale(1.045);
}

.archive-post-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: clamp(14px, 2.4vh, 24px);
}

.archive-post-copy time {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 700;
}

.archive-post-copy h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(30px, 4vw, 66px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.052em;
}

.archive-post-copy h2 a {
  color: inherit;
  text-decoration: none;
}

.archive-post-copy p,
.blog-archive-empty {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -.018em;
}

.post-page {
  background: var(--dark);
}

.single-post {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(420px, 1fr);
  gap: clamp(42px, 6vw, 110px);
  align-items: start;
  padding: clamp(110px, 13vh, 160px) clamp(22px, 4vw, 72px) clamp(80px, 12vh, 150px);
}

.post-sidebar {
  position: sticky;
  top: clamp(78px, 9vh, 110px);
  height: 85vh;
  display: grid;
  grid-template-rows: minmax(260px, 54vh) auto;
  gap: clamp(16px, 2.4vh, 28px);
  align-content: start;
}

.post-hero {
  display: grid;
  gap: clamp(16px, 2.5vh, 26px);
}

.post-meta {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}

.post-meta a {
  width: fit-content;
  color: inherit;
  text-decoration: none;
}

.post-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.055em;
}

.post-feature {
  margin: 0;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}

.post-feature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}

.post-content {
  width: min(820px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 300;
  line-height: 1.82;
  letter-spacing: -.02em;
}

.post-content p {
  margin: 0 0 1.35em;
}

.post-content h2,
.post-content h3 {
  margin: clamp(34px, 5vh, 56px) 0 18px;
  color: #fff;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.04em;
}

.post-content h2 {
  font-size: clamp(30px, 3vw, 48px);
}

.post-content h3 {
  font-size: clamp(22px, 2vw, 32px);
}

.post-content ul {
  margin: 0 0 clamp(34px, 5vh, 56px);
  padding-left: 1.2em;
}

.post-content li {
  margin-bottom: .55em;
}

.post-content blockquote {
  margin: clamp(42px, 7vh, 72px) 0;
  padding-left: clamp(24px, 3vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, .32);
  color: #fff;
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.045em;
}

.post-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(42px, 6vh, 68px);
}

.contact-page {
  background: #f7f8f6;
  color: var(--ink);
}

.contact-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f7f8f6;
  color: var(--ink);
  text-align: center;
}

.contact-hero-canvas {
  z-index: 1;
  opacity: .62;
  pointer-events: none;
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(16px, 2.4vh, 28px);
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(72px, 9.8vw, 172px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.058em;
}

.contact-breadcrumb {
  margin: 0;
  color: rgba(15, 37, 45, .78);
  font-size: clamp(12px, .9vw, 15px);
  font-weight: 300;
}

.contact-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.contact-form-section {
  background: #f7f8f6;
  color: var(--ink);
  padding: clamp(56px, 8vh, 96px) clamp(22px, 4vw, 72px) clamp(86px, 12vh, 140px);
}

.contact-form-copy {
  width: min(1180px, 100%);
  margin: 0 auto clamp(26px, 4vh, 44px);
}

.contact-form-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.8vw, 76px);
  line-height: .96;
  letter-spacing: -.052em;
}

.contact-form-copy p {
  margin: 0;
  color: rgba(15, 37, 45, .78);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 300;
}

.contact-form {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-form .wpcf7-form p {
  margin: 0;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 37, 45, .42);
  background: transparent;
  color: var(--ink);
  padding: 20px 28px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color .25s ease, background-color .25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: rgba(255, 255, 255, .48);
}

.contact-form fieldset {
  border: 0;
  margin: 22px 0 18px;
  padding: 0;
}

.contact-form legend {
  margin-bottom: 14px;
  color: rgba(15, 37, 45, .82);
  font-size: 14px;
}

.project-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.project-options .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.project-options .wpcf7-list-item {
  margin: 0;
}

.project-options label,
.project-options .wpcf7-list-item label,
.contact-privacy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(15, 37, 45, .82);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
}

.project-options input,
.contact-privacy input {
  appearance: none;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(15, 37, 45, .38);
  background: transparent;
  margin: 0;
}

.project-options input:checked,
.contact-privacy input:checked {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 2px #f7f8f6;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-privacy {
  margin: 22px 0;
}

.contact-privacy a {
  color: var(--blue);
  text-decoration: none;
}

.contact-form .fluentform,
.contact-form .frm-fluent-form,
.contact-form .ff-default {
  width: 100%;
}

.contact-form .fluentform .ff-el-group,
.contact-form .frm-fluent-form .ff-el-group {
  margin-bottom: 18px;
}

.contact-form .fluentform .ff-t-container,
.contact-form .frm-fluent-form .ff-t-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.contact-form .fluentform .ff-t-cell,
.contact-form .frm-fluent-form .ff-t-cell {
  padding: 0 !important;
}

.contact-form .fluentform .ff-el-input--label,
.contact-form .frm-fluent-form .ff-el-input--label {
  margin: 0 0 14px;
}

.contact-form .fluentform .ff-el-input--label label,
.contact-form .frm-fluent-form .ff-el-input--label label {
  color: rgba(15, 37, 45, .82);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.contact-form .fluentform .ff-el-form-control,
.contact-form .frm-fluent-form .ff-el-form-control,
.contact-form .fluentform input[type="text"],
.contact-form .fluentform input[type="email"],
.contact-form .fluentform input[type="tel"],
.contact-form .fluentform textarea,
.contact-form .fluentform select {
  width: 100%;
  min-height: 0;
  border: 1px solid rgba(15, 37, 45, .42);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 20px 28px;
  font-size: 13px;
  font-family: inherit;
  line-height: 1.35;
  outline: none;
  box-shadow: none;
  transition: border-color .25s ease, background-color .25s ease;
}

.contact-form .fluentform select,
.contact-form .frm-fluent-form select.ff-el-form-control {
  appearance: none;
  min-height: 62px;
  padding-right: 54px;
  background-color: transparent;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 28px) 50%, calc(100% - 22px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form .fluentform .choices,
.contact-form .frm-fluent-form .choices {
  width: 100%;
  margin: 0;
  overflow: visible;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
}

.contact-form .fluentform .choices__inner,
.contact-form .frm-fluent-form .choices__inner {
  min-height: 62px;
  border: 1px solid rgba(15, 37, 45, .42);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 20px 54px 20px 28px;
  font-size: 13px;
  line-height: 1.35;
  box-shadow: none;
  transition: border-color .25s ease, background-color .25s ease;
}

.contact-form .fluentform .choices.is-focused .choices__inner,
.contact-form .fluentform .choices.is-open .choices__inner,
.contact-form .frm-fluent-form .choices.is-focused .choices__inner,
.contact-form .frm-fluent-form .choices.is-open .choices__inner {
  border-color: var(--blue);
  background: rgba(255, 255, 255, .48);
}

.contact-form .fluentform .choices[data-type*="select-one"]::after,
.contact-form .frm-fluent-form .choices[data-type*="select-one"]::after {
  right: 28px;
  margin-top: -5px;
  border-color: rgba(15, 37, 45, .82) transparent transparent;
  border-width: 6px 5px 0;
}

.contact-form .fluentform .choices[data-type*="select-one"].is-open::after,
.contact-form .frm-fluent-form .choices[data-type*="select-one"].is-open::after {
  margin-top: -5px;
  border-color: transparent transparent var(--blue);
  border-width: 0 5px 6px;
}

.contact-form .fluentform .choices__list--single,
.contact-form .frm-fluent-form .choices__list--single {
  padding: 0;
}

.contact-form .fluentform .choices__list--multiple,
.contact-form .frm-fluent-form .choices__list--multiple {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-form .fluentform .choices__list--multiple .choices__item,
.contact-form .frm-fluent-form .choices__list--multiple .choices__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 37, 45, .78);
  color: #fff;
  padding: 9px 10px 9px 18px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-form .fluentform .choices__list--multiple .choices__button,
.contact-form .frm-fluent-form .choices__list--multiple .choices__button {
  position: relative !important;
  inset: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  margin: 0 !important;
  border: 0 !important;
  border-left: 1px solid rgba(255, 255, 255, .32) !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  color: transparent !important;
  opacity: 1 !important;
  padding: 0 0 0 10px !important;
  font-size: 0 !important;
  line-height: 1 !important;
  text-indent: -9999px !important;
  transform: none !important;
  cursor: pointer;
}

.contact-form .fluentform .choices__list--multiple .choices__button::before,
.contact-form .frm-fluent-form .choices__list--multiple .choices__button::before {
  display: none !important;
  content: none !important;
}

.contact-form .fluentform .choices__list--multiple .choices__button::after,
.contact-form .frm-fluent-form .choices__list--multiple .choices__button::after {
  display: block !important;
  content: "×" !important;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-indent: 0 !important;
  transform: translate(-38%, -54%);
  pointer-events: none;
}

.contact-form .fluentform .choices__list--multiple .choices__button:hover,
.contact-form .frm-fluent-form .choices__list--multiple .choices__button:hover {
  background: transparent !important;
  background-image: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.contact-form .fluentform .choices__list--multiple .choices__button:hover::after,
.contact-form .frm-fluent-form .choices__list--multiple .choices__button:hover::after {
  opacity: .85;
}

.contact-form .fluentform .choices__placeholder,
.contact-form .frm-fluent-form .choices__placeholder {
  color: rgba(15, 37, 45, .56);
  opacity: 1;
}

.contact-form .fluentform .choices__list--dropdown,
.contact-form .fluentform .choices__list[aria-expanded],
.contact-form .frm-fluent-form .choices__list--dropdown,
.contact-form .frm-fluent-form .choices__list[aria-expanded] {
  z-index: 20;
  border: 1px solid rgba(15, 37, 45, .42);
  border-top: 0;
  border-radius: 0;
  background: #f7f8f6;
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(15, 37, 45, .08);
}

.contact-form .fluentform .choices__list--dropdown .choices__item,
.contact-form .fluentform .choices__list[aria-expanded] .choices__item,
.contact-form .frm-fluent-form .choices__list--dropdown .choices__item,
.contact-form .frm-fluent-form .choices__list[aria-expanded] .choices__item {
  padding: 13px 28px;
  font-size: 13px;
  line-height: 1.35;
}

.contact-form .fluentform .choices__list--dropdown .choices__item--selectable.is-highlighted,
.contact-form .fluentform .choices__list[aria-expanded] .choices__item--selectable.is-highlighted,
.contact-form .frm-fluent-form .choices__list--dropdown .choices__item--selectable.is-highlighted,
.contact-form .frm-fluent-form .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background: rgba(0, 74, 173, .08);
  color: var(--blue);
}

.contact-form .fluentform textarea.ff-el-form-control,
.contact-form .frm-fluent-form textarea.ff-el-form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-form .fluentform .ff-el-form-control:focus,
.contact-form .frm-fluent-form .ff-el-form-control:focus {
  border-color: var(--blue);
  background: rgba(255, 255, 255, .48);
  box-shadow: none;
}

.contact-form .fluentform .ff-el-form-check,
.contact-form .frm-fluent-form .ff-el-form-check {
  display: inline-flex;
  margin: 0;
}

.contact-form .fluentform .ff-el-form-check-label,
.contact-form .frm-fluent-form .ff-el-form-check-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(15, 37, 45, .82);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
}

.contact-form .fluentform .ff-el-form-check-input,
.contact-form .frm-fluent-form .ff-el-form-check-input {
  appearance: none;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border: 1px solid rgba(15, 37, 45, .38);
  border-radius: 0;
  background: transparent;
  margin: 0;
  box-shadow: none;
}

.contact-form .fluentform .ff-el-form-check-input:checked,
.contact-form .frm-fluent-form .ff-el-form-check-input:checked {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 2px #f7f8f6;
}

.contact-form .fluentform .ff-el-form-check-input:checked::before,
.contact-form .frm-fluent-form .ff-el-form-check-input:checked::before {
  display: none;
}

.contact-form .fluentform .ff-el-form-check-label a,
.contact-form .frm-fluent-form .ff-el-form-check-label a {
  color: var(--blue);
  text-decoration: none;
}

.contact-form .fluentform .ff-el-group:has(.ff-el-form-check),
.contact-form .frm-fluent-form .ff-el-group:has(.ff-el-form-check) {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin: 22px 0 18px;
}

.contact-form .fluentform .ff_submit_btn_wrapper,
.contact-form .frm-fluent-form .ff_submit_btn_wrapper {
  margin-top: 22px;
}

.contact-form .fluentform .ff-btn-submit,
.contact-form .frm-fluent-form .ff-btn-submit {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 260px;
  border: 0;
  border-radius: 0;
  background: #d9dbdd;
  color: var(--ink);
  padding: 22px 34px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
  transition: color .35s ease, background-color .35s ease, transform .35s var(--ease);
}

.contact-form .fluentform .ff-btn-submit:hover,
.contact-form .frm-fluent-form .ff-btn-submit:hover {
  color: #fff;
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: none;
}

.contact-form .fluentform .ff-el-is-error .ff-el-form-control,
.contact-form .frm-fluent-form .ff-el-is-error .ff-el-form-control {
  border-color: #d84545;
}

.contact-form .fluentform .error,
.contact-form .fluentform .text-danger,
.contact-form .frm-fluent-form .error,
.contact-form .frm-fluent-form .text-danger {
  margin-top: 8px;
  color: #d84545;
  font-size: 12px;
  line-height: 1.35;
}

.contact-form .fluentform .ff-message-success,
.contact-form .frm-fluent-form .ff-message-success {
  border: 1px solid rgba(15, 37, 45, .16);
  border-radius: 0;
  background: rgba(255, 255, 255, .42);
  color: var(--ink);
  padding: 18px 22px;
  box-shadow: none;
}

.privacy-page {
  background: var(--dark);
  color: #fff;
}

.privacy-page .contact-hero,
.privacy-page .privacy-content-section {
  background: var(--dark);
  color: #fff;
}

.privacy-page .contact-hero-canvas {
  opacity: .32;
}

.privacy-page .contact-breadcrumb {
  color: rgba(255, 255, 255, .72);
}

.privacy-hero h1 {
  max-width: 1180px;
}

.privacy-content-section {
  padding: clamp(56px, 8vh, 96px) clamp(22px, 4vw, 72px) clamp(86px, 12vh, 140px);
}

.privacy-content {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.privacy-content h2 {
  margin: clamp(46px, 7vh, 78px) 0 18px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 1;
  letter-spacing: -.052em;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content h3 {
  margin: clamp(28px, 4vh, 46px) 0 12px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.16;
  letter-spacing: -.035em;
}

.privacy-content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(15px, 1.02vw, 18px);
  font-weight: 300;
  line-height: 1.75;
}

.cookies-table-wrap {
  overflow-x: auto;
  margin: 18px 0 clamp(34px, 5vh, 58px);
  border: 1px solid rgba(255, 255, 255, .16);
}

.cookies-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, .04);
}

.cookies-table th,
.cookies-table td {
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  border-right: 1px solid rgba(255, 255, 255, .1);
  padding: 16px 18px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.cookies-table th {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 700;
}

.cookies-table tr:last-child td {
  border-bottom: 0;
}

.cookies-table th:last-child,
.cookies-table td:last-child {
  border-right: 0;
}

.contact-form button,
.contact-form input[type="submit"] {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 260px;
  border: 0;
  background: #d9dbdd;
  color: var(--ink);
  padding: 22px 34px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  isolation: isolate;
  transition: color .35s ease, transform .35s var(--ease);
}

.contact-form button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--blue);
  transform: translateX(-102%) skewX(-12deg);
  transition: transform .55s var(--ease);
}

.contact-form button span {
  display: inline-block;
  width: 38px;
  height: 1px;
  margin-left: 18px;
  vertical-align: middle;
  background: currentColor;
  transition: width .4s var(--ease), transform .4s var(--ease);
}

.contact-form button:hover,
.contact-form input[type="submit"]:hover {
  color: #fff;
  background: var(--blue);
  transform: translateY(-2px);
}

.contact-form button:hover::before {
  transform: translateX(0) skewX(0deg);
}

.contact-form button:hover span {
  width: 58px;
  transform: translateX(6px);
}

@keyframes contact-orb-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-3deg) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(4deg) scale(1.035);
  }
}

@keyframes contact-line-flow {
  to {
    stroke-dashoffset: -96;
  }
}

.footer {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(220px, .5fr) minmax(360px, .72fr);
  gap: 0;
  align-items: stretch;
  padding-top: clamp(22px, 2.6vw, 44px);
  padding-bottom: clamp(18px, 2.2vw, 34px);
}

.footer-mark {
  align-self: stretch;
  justify-self: stretch;
  display: grid;
  place-items: center;
}

.footer-mark img {
  display: block;
  width: min(32vw, 330px);
  max-width: 72%;
  height: auto;
}

.footer-nav,
.contact {
  min-height: calc(100vh - clamp(40px, 4.8vw, 78px));
  border-left: 1px solid var(--line);
  padding: clamp(34px, 6vh, 76px) 0 0 clamp(24px, 2.8vw, 42px);
}

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

.footer-nav {
  display: grid;
  align-content: space-between;
}

.footer nav a,
.footer-policies a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(14px, .94vw, 17px);
  font-weight: 300;
  text-decoration: none;
  transition: color .25s ease, transform .25s var(--ease);
}

.footer nav a:hover,
.footer-policies a:hover {
  color: #fff;
  transform: translateX(8px);
}

.footer-policies a {
  font-size: clamp(12px, .82vw, 15px);
}

.contact p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(13px, .95vw, 16px);
  font-weight: 300;
  line-height: 1.65;
}

.contact p a {
  color: inherit;
  text-decoration: none;
}

.contact form {
  max-width: 310px;
  margin: 0 0 clamp(18px, 2.2vw, 34px);
}

.contact h3 {
  margin: 0 0 26px;
  font-size: clamp(21px, 1.45vw, 27px);
  font-weight: 300;
  letter-spacing: -.04em;
}

.contact input:not([type="checkbox"]) {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0 0 14px;
  color: #fff;
  font-size: 13px;
  outline: none;
}

.contact label {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 24px 0 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  line-height: 1.35;
}

.contact label a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact label input {
  appearance: none;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: transparent;
  margin-top: 1px;
}

.privacy-note {
  max-width: 310px;
  margin: 0 0 clamp(44px, 3.8vw, 62px);
  color: rgba(255, 255, 255, .74);
  font-size: 11px !important;
  line-height: 1.36 !important;
}

.contact button {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 0;
  background: #fff;
  color: var(--ink);
  padding: 18px 20px;
  margin-top: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .05em;
  isolation: isolate;
  transition: color .35s ease, transform .35s var(--ease);
}

.contact button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--blue);
  transform: translateX(-102%) skewX(-12deg);
  transform-origin: left center;
  transition: transform .55s var(--ease);
}

.contact button span {
  display: inline-block;
  width: 38px;
  height: 1px;
  margin-left: 18px;
  vertical-align: middle;
  background: currentColor;
  transition: width .4s var(--ease), transform .4s var(--ease);
}

.contact button:hover {
  color: #fff;
  transform: translateY(-2px);
}

.contact button:hover::before {
  transform: translateX(0) skewX(0deg);
}

.contact button:hover span {
  width: 58px;
  transform: translateX(6px);
}

.footer small {
  position: absolute;
  left: clamp(22px, 2.6vw, 44px);
  bottom: clamp(18px, 2.2vw, 34px);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
}

.footer-powered img {
  display: inline-block;
  width: 68px;
  height: auto;
  object-fit: contain;
}

.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s ease, transform 1s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-canvas {
    display: none;
  }
}

@media (max-width: 980px) {
  .menu-close {
    top: 24px;
    right: 24px;
  }

  .menu-panel {
    left: 10px;
    width: auto;
    min-width: 0;
    grid-template-rows: auto auto 1fr;
    padding: 64px 26px 24px;
  }

  .menu-links {
    font-size: clamp(24px, 7vw, 38px);
  }

  .site-header {
    padding: 24px;
  }

  .lang-switcher {
    display: none;
    padding-bottom: 16px;
    margin-bottom: -16px;
  }

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

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

  .panel {
    min-height: 100vh;
    padding: 110px 24px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero h1,
  .about h2,
  .definition h2,
  .activities h2 {
    font-size: clamp(54px, 17vw, 96px);
    letter-spacing: -.075em;
  }

  .hero h1 {
    font-size: clamp(46px, 14.45vw, 82px);
    letter-spacing: -.0287em;
  }

  .about h2 {
    font-size: clamp(32px, 10.1vw, 58px);
    letter-spacing: -.0371em;
    word-spacing: .1014em;
  }

  .definition h2 {
    font-size: clamp(48px, 15vw, 86px);
    letter-spacing: -.0329em;
  }

  .about .big-copy {
    font-size: clamp(14px, 3.5vw, 22px);
    line-height: 1.42;
  }

  .bottom-notes,
  .split,
  .companies,
  .cards,
  .footer {
    grid-template-columns: 1fr;
  }

  .bottom-notes {
    width: 100%;
    margin-left: 0;
  }

  .split {
    min-height: 0;
    gap: 42px;
    align-items: start;
  }

  .definition {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .definition-copy {
    display: block;
  }

  .sub {
    font-size: clamp(24px, 7vw, 34px);
  }

  .statement {
    max-width: 560px;
    margin-top: 46px;
    padding-top: 0;
    font-size: clamp(20px, 5.8vw, 30px);
  }

  .definition-orb {
    width: min(72vw, 360px);
    grid-row: 2;
  }

  .definition-text {
    max-width: 560px;
    margin-top: 0;
    font-size: 15px;
    line-height: 1.68;
  }

  .companies {
    gap: 48px;
  }

  .accordion {
    min-height: auto;
    padding-left: 34px;
  }

  .item small {
    left: -30px;
  }

  .item h3 img {
    max-width: 170px;
    max-height: 38px;
  }

  .item p {
    font-size: 13px;
  }

  .activity-intro {
    width: 100%;
    margin: 0;
  }

  .activity-intro h3 {
    margin-top: 0;
  }

  .activities-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .activities-heading::before {
    display: none;
  }

  .activities h2 {
    font-size: clamp(54px, 6.1vw, 95px);
    line-height: 1.19;
    letter-spacing: -.0112em;
  }

  .activity-orb {
    top: 22%;
    right: -28vw;
    width: 78vw;
  }

  .cards article {
    min-height: auto;
  }

  .clients h2 {
    font-size: clamp(54px, 6.1vw, 95px);
    line-height: 1.19;
    letter-spacing: -.0112em;
  }

  .definition h2,
  .left-title h2,
  .activities h2,
  .blog-heading h2 {
    font-size: clamp(54px, 6.1vw, 95px);
    line-height: 1.19;
    letter-spacing: -.0112em;
  }

  .client-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .client-logo {
    min-height: 100px;
    padding: 18px;
  }

  .client-logo img {
    max-width: 88%;
    max-height: 46px;
  }

  .blog {
    height: auto;
    min-height: 100vh;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-block: 110px;
  }

  .blog-heading {
    align-items: flex-start;
  }

  .blog-feature {
    min-height: 42vh;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255, 255, 255, .3);
  }

  .blog-post {
    min-height: 220px;
    border-right: 0;
  }

  .blog-post:nth-child(n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
  }

  .single-post {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 120px 24px 84px;
  }

  .post-sidebar {
    position: static;
    height: auto;
    grid-template-rows: auto auto;
  }

  .post-hero {
    gap: 18px;
  }

  .post-hero h1 {
    font-size: clamp(44px, 12vw, 76px);
  }

  .post-feature img {
    height: 42vh;
  }

  .post-content {
    font-size: 17px;
    line-height: 1.76;
  }

  .archive-post {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: clamp(58px, 16vw, 104px);
  }

  .contact-form-section {
    padding: 64px 24px 92px;
  }

  .contact-form .form-grid,
  .contact-form .fluentform .ff-t-container,
  .contact-form .frm-fluent-form .ff-t-container {
    grid-template-columns: 1fr;
  }

  .project-options,
  .contact-form .fluentform .ff-el-group:has(.ff-el-form-check),
  .contact-form .frm-fluent-form .ff-el-group:has(.ff-el-form-check) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form button,
  .contact-form .fluentform .ff-btn-submit,
  .contact-form .frm-fluent-form .ff-btn-submit {
    width: 100%;
  }

  .footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 56px 24px 28px;
    color: #fff;
  }

  .footer-mark {
    order: 3;
    justify-self: start;
    min-height: 230px;
    width: 100%;
    padding: 74px 0 62px;
  }

  .footer-mark img {
    width: min(28vw, 108px);
    max-width: none;
    margin: 0 auto;
  }

  .footer-nav,
  .contact {
    border-left: 0;
    min-height: 0;
    padding: 0;
  }

  .footer-nav {
    order: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .72);
  }

  .footer nav a,
  .footer-policies a,
  .contact p,
  .contact p a,
  .contact h3,
  .contact label,
  .contact label a,
  .privacy-note,
  .footer-powered {
    color: #fff !important;
  }

  .footer nav a,
  .footer-policies a {
    margin-bottom: 9px;
    font-size: 17px;
    line-height: 1.35;
  }

  .footer-policies {
    align-self: start;
    padding-top: 118px;
  }

  .footer-policies a {
    white-space: nowrap;
  }

  .contact {
    order: 2;
    display: block;
    padding-top: 40px;
  }

  .contact > p {
    font-size: 18px;
    line-height: 1.72;
  }

  .contact form {
    max-width: none;
    margin-top: 44px;
  }

  .contact h3 {
    margin-bottom: 42px;
    font-size: 26px;
    line-height: 1.15;
  }

  .contact input:not([type="checkbox"]) {
    border-bottom-color: rgba(255, 255, 255, .78);
    color: #fff;
    font-size: 16px;
  }

  .contact input::placeholder {
    color: #fff;
    opacity: 1;
  }

  .contact label {
    margin: 30px 0 32px;
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
  }

  .contact label input {
    border-color: #fff;
  }

  .privacy-note {
    max-width: none;
    margin-bottom: 56px;
    font-size: 15px !important;
    line-height: 1.28 !important;
  }

  .contact button {
    width: min(100%, 252px);
    padding: 22px 24px;
    margin-top: 8px;
  }

  .footer-powered {
    order: 4;
    position: static;
    justify-self: center;
    justify-content: center;
    text-align: center;
    padding-top: 38px;
    border-top: 1px solid rgba(0, 188, 212, .75);
    width: 100%;
    font-size: 14px;
  }

}

@media (max-width: 560px) {
  .brand {
    gap: 9px;
  }

  .brand img {
    width: 132px;
  }

  .brand small,
  .menu-btn {
    font-size: 10px;
  }

  .menu-btn i {
    width: 28px;
  }

  .panel {
    padding-inline: 18px;
  }

  .lead {
    font-size: 13px;
  }

  .menu-panel {
    inset: 8px;
    padding: 62px 22px 22px;
  }

  .hero h1,
  .about h2,
  .definition h2,
  .activities h2,
  .blog-heading h2,
  .blog-archive-hero h1,
  .clients h2,
  .contact-hero h1,
  .privacy-hero h1,
  .left-title h2,
  .contact-form-copy h2,
  .post-hero h1 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero h1 {
    font-size: clamp(38px, 11.6vw, 52px);
    line-height: .94;
    letter-spacing: -.0245em;
  }

  .hero-copy {
    transform: translateY(clamp(18px, 4vh, 34px));
  }

  .wire-big {
    width: min(92vw, 430px);
  }

  .about h2 {
    font-size: clamp(30px, 8.6vw, 42px);
    line-height: 1;
    letter-spacing: -.0308em;
    word-spacing: .1014em;
  }

  .definition h2,
  .left-title h2,
  .activities h2,
  .clients h2,
  .blog-heading h2 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.19;
    letter-spacing: -.0084em;
  }

  .blog-archive-hero h1,
  .contact-hero h1,
  .privacy-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1;
    letter-spacing: -.034em;
  }

  .blog-heading {
    flex-direction: column;
    gap: 18px;
  }

  .blog-archive {
    padding-inline: 18px;
  }

  .archive-post-copy h2 {
    font-size: clamp(28px, 8.6vw, 42px);
    line-height: 1.08;
    letter-spacing: -.034em;
  }

  .archive-post-image {
    min-height: 220px;
  }

  .contact-form-copy h2,
  .post-hero h1 {
    font-size: clamp(30px, 8.8vw, 42px);
    line-height: 1.04;
    letter-spacing: -.034em;
  }

  .activity-intro h3,
  .cards h4,
  .blog-post h3,
  .privacy-content h2,
  .privacy-content h3,
  .post-content h2,
  .post-content h3 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    letter-spacing: -.026em;
  }

  .about::before {
    width: 150%;
    right: -42%;
  }

  .activity-orb {
    opacity: .42;
    right: -42vw;
    width: 96vw;
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo {
    min-height: 118px;
    padding: 22px;
  }

  .client-logo img {
    max-height: 56px;
  }

  .footer-powered {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    row-gap: 4px;
  }

}
