:root {
  --ink: #102537;
  --deep: #073b4c;
  --teal: #087e8b;
  --green: #3f9d3a;
  --lime: #b8d960;
  --gold: #f0ae35;
  --plum: #7650a8;
  --sky: #76c9dd;
  --paper: #fbfaf6;
  --mist: #edf3ef;
  --line: #dce5e1;
  --muted: #58707a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  cursor: none;
}

.site {
  overflow: hidden;
}

.shell {
  width: min(1180px, calc(100% - 44px));
  margin: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
}

.cursor-ring {
  width: 37px;
  height: 37px;
  border: 2px solid var(--teal);
  transition:
    width 0.18s,
    height 0.18s,
    background 0.18s,
    border-color 0.18s;
}

.cursor-ring.active {
  width: 58px;
  height: 58px;
  background: rgba(184, 217, 96, 0.3);
  border-color: var(--green);
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(16, 37, 55, 0.08);
  backdrop-filter: blur(14px);
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 151px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:not(.nav-button):hover,
.nav-links .active {
  color: var(--teal);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 16px;
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 2px;
}

.nav-button {
  background: var(--green);
}

.menu {
  display: none;
  background: transparent;
  border: 0;
  font-size: 27px;
  color: var(--ink);
}

.hero-home {
  position: relative;
  isolation: isolate;
  padding: 10px 0 74px;
  min-height: 680px;
}

.hero-home:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(112deg, #f8f8ed 0 56%, #e9f1e9 56%);
}

.hero-home:after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -35%;
  z-index: -1;
  width: 67vw;
  height: 67vw;
  border-radius: 50%;
  background: conic-gradient(from 20deg,
      var(--teal),
      var(--sky),
      var(--lime),
      var(--gold),
      var(--plum),
      var(--teal));
  opacity: 0.88;
}

.hero-copy-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-home h1,
.page-hero h1 {
  font:
    700 clamp(52px, 7vw, 94px)/0.94 "Manrope",
    sans-serif;
  letter-spacing: -0.075em;
  margin: 18px 0 23px;
}

.hero-home h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 580px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

.button.alt {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(16, 37, 55, 0.25);
}

.mosaic {
  position: relative;
  height: 480px;
}

.tile {
  position: absolute;
  display: grid;
  place-items: center;
  color: #fff;
  font:
    700 18px "Manrope",
    sans-serif;
  box-shadow: 16px 17px 0 rgba(16, 37, 55, 0.1);
}

.tile i {
  font-size: 42px;
}

.tile-a {
  inset: 5% 40% 36% 1%;
  background: var(--ink);
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 83%);
}

.tile-b {
  inset: 27% 0 8% 35%;
  background: var(--green);
  clip-path: polygon(0 0, 100% 16%, 84% 100%, 11% 85%);
}

.tile-c {
  inset: 1% 8% 56% 50%;
  background: var(--gold);
  clip-path: polygon(26% 0, 100% 23%, 80% 100%, 0 67%);
}

.tile-d {
  inset: 58% 42% 2% 7%;
  background: var(--plum);
  clip-path: polygon(0 12%, 100% 0, 82% 100%, 12% 78%);
}

.tile span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-size: 12px;
}

.marquee {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 15px 0;
  white-space: nowrap;
}

.marquee div {
  display: inline-block;
  animation: marquee 23s linear infinite;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.marquee b {
  color: var(--lime);
  margin: 0 27px;
}

@keyframes marquee {
  to {
    transform: translateX(-40%);
  }
}

.section {
  padding: 104px 0;
}

.intro-grid,
.section-head {
  display: grid;
  grid-template-columns: 0.75fr 2fr;
  gap: 62px;
}

.section-head {
  align-items: end;
  margin-bottom: 40px;
}

.section h2 {
  font:
    800 clamp(35px, 4.4vw, 62px)/1 "Manrope",
    sans-serif;
  letter-spacing: -0.06em;
  margin: 0;
}

.section h2 span {
  color: var(--teal);
}

.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.intro {
  background: #fff;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.numbers div {
  padding: 18px 15px 0;
  border-right: 1px solid var(--line);
}

.numbers strong {
  display: block;
  font:
    800 30px "Manrope",
    sans-serif;
  color: var(--deep);
}

.numbers span {
  font-size: 12px;
  color: var(--muted);
}

.services {
  background: var(--mist);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 330px;
  padding: 23px;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e4ebe7;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.50s,
    box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 14px 0 var(--gold);
}

.service-card:nth-child(2):hover {
  box-shadow-color: var(--teal);
}

.service-card:nth-child(3):hover {
  box-shadow-color: var(--plum);
}

.service-card:nth-child(4):hover {
  box-shadow-color: var(--green);
}

.service-card i {
  font-size: 32px;
  color: var(--teal);
  margin: 42px 0 24px;
}

.service-card:nth-child(2) i {
  color: var(--green);
}

.service-card:nth-child(3) i {
  color: var(--plum);
}

.service-card:nth-child(4) i {
  color: var(--gold);
}

.service-card h3 {
  font:
    700 22px/1.1 "Manrope",
    sans-serif;
  letter-spacing: -0.04em;
  margin: 0 0 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.service-card small {
  margin-top: auto;
  color: var(--teal);
  font-weight: 700;
}

.products {
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
}

.product-card {
  min-height: 410px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: end;
}

.product-card:before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  right: -80px;
  top: -50px;
  border: 30px solid rgba(255, 255, 255, 0.12);
}

.product-card h3 {
  font:
    700 38px/1 "Manrope",
    sans-serif;
  letter-spacing: -0.06em;
  margin: 0 0 7px;
}

.product-card p {
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  max-width: 210px;
}

.product-card i {
  position: absolute;
  top: 60px;
  left: 26px;
  font-size: 76px;
  opacity: 0.85;
}

.onboard {
  background: linear-gradient(145deg, #0e4167, #091c3d);
}

.branch {
  background: linear-gradient(145deg, #368c44, #124e40);
}

.medi {
  background: linear-gradient(145deg, #167a88, #103a59);
}

.journey {
  background: linear-gradient(108deg, #fff 0 54%, #e9f3ee 54%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid #9eaea7;
}

.timeline article {
  padding: 23px 21px 0;
  border-left: 1px solid #c5d1ca;
}

.timeline article:first-child {
  border-left: 0;
  padding-left: 0;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-weight: 800;
  margin-top: -55px;
}

.timeline article:nth-child(2) span {
  background: var(--teal);
}

.timeline article:nth-child(3) span {
  background: var(--plum);
}

.timeline article:nth-child(4) span {
  background: var(--gold);
  color: var(--ink);
}

.timeline h3 {
  font:
    700 19px "Manrope",
    sans-serif;
  margin: 22px 0 9px;
}

.timeline p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.cta {
  background: var(--gold);
  padding: 68px 0;
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta h2 {
  font:
    800 clamp(35px, 4.5vw, 62px)/1 "Manrope",
    sans-serif;
  letter-spacing: -0.06em;
  margin: 0;
}

.cta .button {
  background: var(--ink);
  white-space: nowrap;
}

.site-footer {
  background: #092f3d;
  color: #d2e1df;
  padding: 20px 0 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.45fr;
  gap: 42px;
}

.footer-brand {
  width: 160px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer-grid h3 {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: #d2e1df;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.65;
}

.footer-grid a {
  display: block;
  margin-bottom: 7px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.page-hero {
  padding: 86px 0 72px;
  position: relative;
  overflow: hidden;
  background: var(--mist);
}

.page-hero:after {
  content: "";
  position: absolute;
  right: -9vw;
  top: -18vw;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: var(--accent, var(--teal));
  opacity: 0.92;
  mix-blend-mode: multiply;
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
}

.tone-bank {
  --accent: var(--teal);
}

.tone-erp {
  --accent: var(--gold);
}

.tone-product {
  --accent: var(--plum);
}

.tone-people {
  --accent: var(--green);
}

.tone-contact {
  --accent: var(--sky);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 68px;
}

.rich-copy h2 {
  font:
    800 38px/1.05 "Manrope",
    sans-serif;
  letter-spacing: -0.05em;
  margin: 0 0 20px;
}

.rich-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.callout {
  background: var(--ink);
  color: #fff;
  padding: 29px;
  align-self: start;
}

.callout h3 {
  font:
    700 24px/1.1 "Manrope",
    sans-serif;
  margin-top: 0;
}

.callout p,
.callout li {
  font-size: 14px;
  line-height: 1.6;
  color: #cfddda;
}

.callout ul {
  padding-left: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 33px;
}

.feature {
  padding: 19px;
  background: var(--mist);
  border-left: 4px solid var(--teal);
}

.feature:nth-child(2) {
  border-color: var(--green);
}

.feature:nth-child(3) {
  border-color: var(--gold);
}

.feature:nth-child(4) {
  border-color: var(--plum);
}

.feature i {
  font-size: 22px;
}

.feature h3 {
  margin: 12px 0 6px;
  font-size: 17px;
}

.feature p {
  margin: 0;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.logo-badge {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 270px;
  background: linear-gradient(145deg, var(--deep), var(--teal));
  color: #fff;
  font:
    800 56px/1 "Manrope",
    sans-serif;
  letter-spacing: -0.08em;
}

.logo-badge i {
  font-size: 74px;
  color: var(--lime);
  display: block;
  margin-bottom: 15px;
}

.roles {
  display: grid;
  gap: 13px;
}

.role {
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
}

.role h2 {
  font:
    700 25px "Manrope",
    sans-serif;
  margin: 0 0 10px;
}

.role p,
.role li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.role ul {
  margin: 10px 0 0;
  padding-left: 19px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
}

.contact-info {
  background: var(--ink);
  color: #fff;
  padding: 32px;
}

.contact-info h2 {
  font:
    700 32px "Manrope",
    sans-serif;
  margin: 0 0 25px;
}

.contact-info a,
.contact-info p {
  color: #d8e5e4;
  text-decoration: none;
  line-height: 1.7;
}

.contact-info i {
  color: var(--lime);
  margin-right: 9px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form textarea,
.contact-form .wide {
  grid-column: 1/-1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cddbd4;
  background: #fff;
  padding: 14px;
  font: inherit;
}

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

.contact-form button {
  justify-self: start;
}

.certificate {
  max-width: 640px;
  width: 100%;
  border: 12px solid var(--mist);
  display: block;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.client-list div {
  padding: 18px;
  background: var(--mist);
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 83px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 22px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }

  .menu {
    display: block;
  }

  .hero-copy-grid,
  .intro-grid,
  .section-head,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mosaic {
    height: 580px;
  }

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

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card:first-child {
    grid-column: 1/-1;
  }

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

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 39px;
  }

  .timeline article:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .shell {
    width: min(100% - 32px, 1180px);
  }

  .nav {
    height: 72px;
  }

  .brand img {
    width: 132px;
  }

  .hero-home {
    padding: 69px 0 62px;
    min-height: auto;
  }

  .hero-home h1,
  .page-hero h1 {
    font-size: 50px;
  }

  .hero-copy-grid {
    gap: 18px;
  }

  .mosaic {
    height: 520px;
    transform: scale(1);
    transform-origin: left top;
    margin-bottom: -5px;
  }

  .section {
    padding: 74px 0;
  }

  .service-grid,
  .product-grid,
  .feature-list,
  .client-list {
    grid-template-columns: 1fr;
  }

  .product-card:first-child {
    grid-column: auto;
  }

  .product-card {
    min-height: 330px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 52px;
  }

  .timeline article,
  .timeline article:nth-child(3) {
    border-left: 1px solid #c5d1ca;
    padding: 23px 0 0 20px;
  }

  .timeline article:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .cta-wrap {
    display: block;
  }

  .cta .button {
    margin-top: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .page-hero {
    padding: 65px 0 55px;
  }

  .page-hero:after {
    width: 70vw;
    height: 70vw;
    right: -20vw;
    top: -17vw;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

.cursor-c {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-20%, -20%);
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font:
    800 23px/1 "Manrope",
    sans-serif;
  box-shadow:
    0 0 0 4px rgba(184, 217, 96, 0.75),
    5px 7px 0 rgba(7, 59, 76, 0.18);
  transition:
    transform 0.16s,
    background 0.16s,
    box-shadow 0.16s;
}

.cursor-c.active {
  transform: translate(-20%, -20%) scale(1.28) rotate(-8deg);
  background: var(--teal);
  box-shadow:
    0 0 0 5px rgba(240, 174, 53, 0.85),
    7px 9px 0 rgba(118, 80, 168, 0.22);
}

@media (max-width: 600px) {
  .cursor-c {
    display: none;
  }
}

.cursor-c {
  width: 24px;
  height: 24px;
  background: rgba(184, 217, 96, 0.38);
  border: 1px solid rgba(63, 157, 58, 0.55);
  color: rgba(7, 126, 139, 0.9);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.68);
}

.cursor-c.active {
  transform: translate(-20%, -20%) scale(1.16);
  background: rgba(118, 201, 221, 0.34);
  border-color: rgba(8, 126, 139, 0.65);
  box-shadow: 0 0 0 3px rgba(240, 174, 53, 0.35);
}

.cursor-c {
  width: 27px;
  height: 27px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.cursor-c img {
  width: 100%;
  height: 100%;
  display: block;
}

.cursor-c.active {
  background: transparent;
  border: 0;
  box-shadow: 0 0 0 2px rgba(240, 174, 53, 0.42);
  border-radius: 50%;
  transform: translate(-20%, -20%) scale(1.14);
}

.cursor-c {
  width: 25px;
  height: 25px;
  filter: opacity(0.62) saturate(0.78) brightness(1.16);
}

.cursor-c:after {
  content: "";
  position: absolute;
  left: -7px;
  top: -7px;
  width: 13px;
  height: 18px;
  background: rgba(7, 59, 76, 0.8);
  clip-path: polygon(0 0,
      0 100%,
      34% 72%,
      57% 100%,
      70% 91%,
      48% 63%,
      100% 63%);
  filter: drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.72));
}

.cursor-c.active {
  filter: opacity(0.8) saturate(0.9) brightness(1.12);
}

.cursor-c:after {
  content: none;
}

.product-card {
  cursor: pointer;
}

.relationships {
  background: linear-gradient(110deg, #fff 0 55%, #edf3ef 55%);
}

.relationship-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 16px;
}

.relationship-grid article {
  padding: 29px;
  background: var(--ink);
  color: #fff;
}

.relationship-grid article+article {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.relationship-grid h3 {
  font:
    700 31px/1.04 "Manrope",
    sans-serif;
  letter-spacing: -0.05em;
  margin: 12px 0;
}

.relationship-grid p:not(.eyebrow) {
  font-size: 20px;
  line-height: 1.6;
  color: #d4e1df;
}

.relationship-grid article+article p:not(.eyebrow) {
  color: var(--muted);
}

.client-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 19px;
}

.client-chips span {
  padding: 10px 12px;
  background: var(--mist);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 600px) {
  .relationship-grid {
    grid-template-columns: 1fr;
  }

  .relationships {
    background: #fff;
  }
}

.logo-rail-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 23px 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
}

.relationship-grid article+article .logo-rail-controls {
  color: var(--teal);
}

.rail-button {
  width: 29px;
  height: 29px;
  margin-left: 5px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
  color: #fff;
}

.relationship-grid article+article .rail-button {
  border-color: var(--line);
  color: var(--ink);
}

.logo-rail {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) transparent;
  padding-bottom: 8px;
}

.logo-track {
  display: flex;
  gap: 10px;
  width: max-content;
}

.logo-track figure {
  width: 205px;
  height: 106px;
  margin: 0;
  flex: none;
  scroll-snap-align: start;
  display: grid;
  place-items: center;
  background: var(--mist);
  border: 1px solid var(--line);
  padding: 16px;
}

.dark-rail .logo-track figure {
  background: #fff;
}

.logo-track img {
  display: block;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  filter: saturate(0.88);
}

.product-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: modal-in 0.2s ease;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 24, 35, 0.76);
  backdrop-filter: blur(8px);
}

.product-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 610px);
  padding: 52px;
  background: linear-gradient(140deg, #102537, #073b4c);
  color: #fff;
  box-shadow: 20px 23px 0 rgba(184, 217, 96, 0.75);
}

.product-modal.modal-branch .product-modal-panel {
  background: linear-gradient(140deg, #174e40, #368c44);
  box-shadow: 20px 23px 0 rgba(240, 174, 53, 0.75);
}

.product-modal.modal-medi .product-modal-panel {
  background: linear-gradient(140deg, #103a59, #167a88);
  box-shadow: 20px 23px 0 rgba(118, 80, 168, 0.65);
}

.product-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-size: 18px;
}

.product-modal .eyebrow {
  color: var(--lime);
  margin: 0;
}

.product-modal-icon {
  display: block;
  margin: 24px 0 12px;
  font-size: 58px;
  color: var(--gold);
}

.product-modal h2 {
  font:
    800 clamp(38px, 6vw, 62px)/0.96 "Manrope",
    sans-serif;
  letter-spacing: -0.07em;
  margin: 0;
}

.product-modal p:not(.eyebrow) {
  max-width: 550px;
  line-height: 1.6;
  color: #d5e1df;
}

.product-modal ul {
  list-style: none;
  margin: 25px 0 30px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.product-modal li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.product-modal li i {
  color: var(--lime);
  font-size: 19px;
}

.product-modal .button {
  background: #fff;
  color: var(--ink);
}

@keyframes modal-in {
  from {
    opacity: 0;
  }

  .product-modal-panel {
    transform: translateY(16px);
  }

  to {
    opacity: 1;
  }

  .product-modal-panel {
    transform: none;
  }
}

@media (max-width: 600px) {
  .logo-track figure {
    width: 178px;
    height: 94px;
  }

  .product-modal {
    padding: 16px;
  }

  .product-modal-panel {
    padding: 42px 27px 30px;
    box-shadow: 10px 12px 0 rgba(184, 217, 96, 0.65);
  }

  .product-modal-icon {
    font-size: 44px;
    margin: 20px 0 10px;
  }

  .product-modal h2 {
    font-size: 43px;
  }
}

.logo-rail {
  scroll-snap-type: none;
}

@media (hover: hover) {
  .product-card {
    transition:
      transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
      box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 0.25s ease;
  }

  .product-card:hover {
    transform: translateY(-9px) scale(1.018);
    box-shadow: 0 17px 0 rgba(16, 37, 55, 0.2);
    filter: saturate(1.12);
  }

  .product-card:hover i {
    transform: rotate(-7deg) scale(1.08);
  }

  .product-card:hover h3 {
    transform: translateX(5px);
  }
}

.product-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

.product-card i,
.product-card h3 {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wordmark {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 5px;
  text-align: left;
}

.wordmark strong {
  font:
    800 31px/0.9 "Manrope",
    sans-serif;
  letter-spacing: -0.08em;
}

.wordmark small {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.partner-mark {
  background: linear-gradient(135deg, #1b4b60, #0b2739) !important;
  color: #fff;
}

.partner-mark strong {
  color: var(--lime);
}

.cep-mark strong {
  font-size: 48px;
  color: #2370a8;
}

.cep-mark small {
  color: #23445a;
}

.timestamp-mark strong {
  font-style: italic;
  color: #c90d0d;
}

.timestamp-mark small {
  color: #9d1b1b;
}

.mafra-mark strong {
  font-size: 20px !important;
  color: #367c3b;
  letter-spacing: -0.05em;
}

.mafra-mark small {
  color: #3b7743;
}

.alinoz-mark strong {
  font-style: italic;
  color: #1a439a;
  letter-spacing: -0.05em;
}

.alinoz-mark small {
  color: #ef422d;
}

.nightingale-mark strong {
  font-size: 21px !important;
  color: #244e94;
}

.nightingale-mark small {
  color: #3f679e;
}

.clients-showcase {
  background: #edf3ef;
}

.clients-panel {
  padding: 31px;
  background: #fff;
  border: 1px solid var(--line);
}

.clients-panel h3 {
  font:
    700 36px/1.04 "Manrope",
    sans-serif;
  letter-spacing: -0.055em;
  margin: 12px 0;
}

.clients-panel>p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 610px;
}

.clients-panel .logo-rail-controls {
  color: var(--teal);
}

.clients-panel .rail-button {
  border-color: var(--line);
  color: var(--ink);
}

.site {
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.hero-home:after {
  right: 5%;
  bottom: 38px;
  width: min(34vw, 520px);
  height: min(34vw, 520px);
}

.footer-grid {
  grid-template-columns: 1.35fr 0.85fr 0.85fr 0.85fr 1.25fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site {
  overflow: visible;
  overflow-x: clip;
}

.hero-home {
  min-height: 750px;
}

.hero-home:after {
  right: 2%;
  bottom: 42px;
  width: min(44vw, 620px);
  height: min(44vw, 620px);
  z-index: 0;
}

.hero-copy-grid {
  position: relative;
  z-index: 1;
}

.product-card {
  min-height: 340px;
}

.footer-brand {
  filter: none;
}

@media (max-width: 600px) {
  .hero-home {
    min-height: auto;
  }

  .hero-home:after {
    width: 280px;
    height: 280px;
    right: -42px;
    bottom: 25px;
  }

  .product-card {
    min-height: 290px;
  }
}

.hero-home {
  min-height: 820px;
}

.hero-home:after {
  right: -1%;
  bottom: 42px;
  width: min(49vw, 720px);
  height: min(49vw, 720px);
}

@media (max-width: 600px) {
  .hero-home {
    min-height: auto;
  }

  .hero-home:after {
    width: 330px;
    height: 330px;
    right: -78px;
    bottom: 18px;
  }
}

@keyframes modal-panel-in {
  from {
    transform: translateY(16px);
  }

  to {
    transform: translateY(0);
  }
}

.product-modal-panel {
  animation: modal-panel-in 0.2s ease;
}

@media (prefers-reduced-motion: no-preference) {

  .motion-ready .section-head,
  .motion-ready .intro-grid>p,
  .motion-ready .intro-grid>div,
  .motion-ready .clients-panel {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
  }

  .motion-ready.in-view .section-head,
  .motion-ready.in-view .intro-grid>p,
  .motion-ready.in-view .intro-grid>div,
  .motion-ready.in-view .clients-panel {
    opacity: 1;
    transform: none;
  }

  .motion-ready .service-card,
  .motion-ready .product-card {
    opacity: 0;
    transform: translateY(80px) scale(.96);
  }

  .motion-ready.in-view .service-card,
  .motion-ready.in-view .product-card {
    animation: card-rise .72s cubic-bezier(.2, .8, .2, 1) forwards;
  }

  .motion-ready.in-view .service-card:nth-child(2),
  .motion-ready.in-view .product-card:nth-child(2) {
    animation-delay: .12s;
  }

  .motion-ready.in-view .service-card:nth-child(3),
  .motion-ready.in-view .product-card:nth-child(3) {
    animation-delay: .24s;
  }

  .motion-ready.in-view .service-card:nth-child(4) {
    animation-delay: .36s;
  }
}

@keyframes card-rise {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.motion-ready.in-view .service-card,
.motion-ready.in-view .product-card {
  animation-duration: 1.15s
}

.motion-ready.in-view .service-card:nth-child(2),
.motion-ready.in-view .product-card:nth-child(2) {
  animation-delay: .2s
}

.motion-ready.in-view .service-card:nth-child(3),
.motion-ready.in-view .product-card:nth-child(3) {
  animation-delay: .4s
}

.motion-ready.in-view .service-card:nth-child(4) {
  animation-delay: .6s
}

.product-grid {
  align-items: start;
}

.product-card:nth-child(2) {
  margin-top: 28px;
}

.product-card:nth-child(3) {
  margin-top: 56px;
}

@media (max-width: 600px) {

  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    margin-top: 0;
  }
}

.enterprise-head {
  margin-bottom: 46px;
}

.industries {
  background: #fff;
}

.industry-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.industry-card,
.why-card {
  min-height: 218px;
  padding: 5px;
  background: var(--mist);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}

.industry-card:hover,
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 0 rgba(16, 37, 55, .12);
}

.industry-card i,
.why-card i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
  background: #fff;
  color: var(--teal);
  font-size: 23px;
}

.industry-card:nth-child(2) i,
.why-card:nth-child(2) i {
  color: var(--green);
}

.industry-card:nth-child(3) i,
.why-card:nth-child(3) i {
  color: var(--plum);
}

.industry-card:nth-child(4) i,
.why-card:nth-child(4) i {
  color: var(--gold);
}

.industry-card:nth-child(5) i,
.why-card:nth-child(5) i {
  color: var(--teal);
}

.industry-card:nth-child(6) i,
.why-card:nth-child(6) i {
  color: var(--green);
}

.industry-card h3,
.why-card h3 {
  margin: 0 0 10px;
  font: 700 20px/1.1 "Manrope", sans-serif;
  letter-spacing: -.04em;
}

.industry-card p,
.why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.why-caixa {
  background: linear-gradient(108deg, #edf3ef 0 58%, #fff 58%);
}

.why-card {
  min-height: 202px;
  background: #fff;
}

.why-card i {
  margin-bottom: 25px;
  background: var(--mist);
}

.enterprise-cta {
  padding: 0px 0;
  background: var(--ink);
  color: #fff;
}

.enterprise-cta-wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.enterprise-cta .eyebrow {
  color: var(--lime);
}

.enterprise-cta h2 {
  max-width: 760px;
  margin: 12px 0 17px;
  font: 800 clamp(38px, 4.5vw, 64px)/.98 "Manrope", sans-serif;
  letter-spacing: -.065em;
}

.enterprise-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #cfddda;
  font-size: 16px;
  line-height: 1.65;
}

.enterprise-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.enterprise-cta .button {
  white-space: nowrap;
}

.enterprise-cta .button:first-child {
  background: var(--green);
}

.enterprise-cta .button.alt {
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

@media(max-width:900px) {

  .industry-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .enterprise-cta-wrap {
    display: block
  }

  .enterprise-cta-actions {
    margin-top: 30px;
    justify-content: flex-start
  }
}

@media(max-width:600px) {

  .industry-grid,
  .why-grid {
    grid-template-columns: 1fr
  }

  .industry-card,
  .why-card {
    min-height: auto
  }

  .enterprise-cta {
    padding: 70px 0
  }

  .enterprise-cta-actions {
    align-items: stretch
  }

  .enterprise-cta .button {
    justify-content: center
  }
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center
}

.nav-chevron {
  font-size: 10px;
  transition: transform .18s ease
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 21px);
  left: -14px;
  z-index: 60;
  min-width: 218px;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(16, 37, 55, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg)
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 10px;
  font-size: 12px !important;
  color: var(--ink) !important
}

.nav-dropdown-menu a:hover {
  background: var(--mist);
  color: var(--teal) !important
}

.nav-dropdown-menu i {
  font-size: 12px
}

@media(max-width:900px) {
  .nav-dropdown {
    display: block
  }

  .nav-dropdown-menu {
    position: static;
    display: block;
    min-width: 0;
    margin: 8px 0 0;
    padding: 4px 0;
    box-shadow: none;
    border-width: 1px 0;
    opacity: 1;
    visibility: visible;
    transform: none
  }

  .nav-dropdown>a {
    display: flex;
    justify-content: space-between;
    align-items: center
  }

  .nav-dropdown-menu a {
    padding: 10px 12px;
    font-size: 12px !important
  }

  .nav-chevron {
    transform: rotate(0) !important
  }
}

.page-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--green)
}

.page-kicker a {
  color: inherit;
  text-decoration: none
}

.page-kicker i {
  font-size: 11px
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px
}

.solution-card {
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 225px
}

.solution-card i {
  font-size: 31px;
  color: var(--teal)
}

.solution-card:nth-child(2n) i {
  color: var(--green)
}

.solution-card h3 {
  font: 700 21px/1.1 "Manrope", sans-serif;
  letter-spacing: -.04em;
  margin: 24px 0 9px
}

.solution-card p,
.solution-card li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted)
}

.solution-card ul {
  margin: 12px 0 0;
  padding-left: 18px
}

.solution-spotlight {
  padding: 34px;
  background: var(--ink);
  color: #fff
}

.solution-spotlight h2 {
  font: 800 clamp(32px, 4vw, 54px)/1 "Manrope", sans-serif;
  letter-spacing: -.06em;
  margin: 0 0 17px
}

.solution-spotlight p {
  color: #d2e1df;
  max-width: 650px;
  line-height: 1.65
}

.capability-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.capability-band div {
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff
}

.capability-band i {
  font-size: 24px;
  color: var(--green)
}

.capability-band h3 {
  margin: 12px 0 0;
  font-size: 15px
}

.breadcrumb-wrap {
  padding-top: 26px
}

.product-visual {
  min-height: 340px;
  padding: 30px;
  background: linear-gradient(145deg, var(--deep), var(--teal));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.product-visual i {
  font-size: 88px;
  color: var(--lime);
  margin-bottom: auto
}

.product-visual h2 {
  font: 800 48px/1 "Manrope", sans-serif;
  letter-spacing: -.07em;
  margin: 0
}

.product-visual p {
  color: #d5e1df
}

.service-landing .service-card {
  min-height: 300px
}

@media(max-width:900px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .capability-band {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {

  .solution-grid,
  .capability-band {
    grid-template-columns: 1fr
  }

  .solution-spotlight {
    padding: 27px
  }

  .product-visual {
    min-height: 270px
  }
}

.unified {
  background: linear-gradient(145deg, #4d7d24, #193f28)
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch
}

.product-card,
.product-card:nth-child(2),
.product-card:nth-child(3) {
  margin-top: 0;
  min-height: 320px
}

.product-card:first-child {
  grid-column: auto
}

@media(max-width:900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .product-card:first-child {
    grid-column: auto
  }
}

@media(max-width:600px) {
  .product-grid {
    grid-template-columns: 1fr
  }

  .product-card {
    min-height: 290px
  }
}

.logo-rail {
  scrollbar-width: none;
  -ms-overflow-style: none
}

.logo-rail::-webkit-scrollbar {
  display: none
}

.nav-links.open {
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  overscroll-behavior: contain
}

.nav-links.open::-webkit-scrollbar {
  width: 4px
}

.nav-links.open::-webkit-scrollbar-thumb {
  background: var(--line)
}

@media(max-width:600px) {
  .nav-links.open {
    top: 71px;
    padding: 14px 16px;
    gap: 10px
  }

  .nav-links.open>a,
  .nav-dropdown>a {
    padding: 8px 0
  }

  .nav-dropdown-menu a {
    padding: 9px 12px
  }

  .page-hero p {
    font-size: 16px
  }

  .section-head {
    margin-bottom: 30px
  }

  .service-card {
    min-height: 270px
  }

  .footer-grid {
    gap: 28px
  }
}

.cta {
  display: none !important
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-self: start
}

.metric-grid div {
  min-height: 150px;
  padding: 20px;
  background: var(--mist);
  border-left: 4px solid var(--teal)
}

.metric-grid div:nth-child(2) {
  border-color: var(--green)
}

.metric-grid div:nth-child(3) {
  border-color: var(--gold)
}

.metric-grid div:nth-child(4) {
  border-color: var(--plum)
}

.metric-grid i {
  display: block;
  font-size: 25px;
  color: var(--teal)
}

.metric-grid strong {
  display: block;
  margin: 15px 0 4px;
  font: 800 31px/1 "Manrope", sans-serif;
  letter-spacing: -.06em
}

.metric-grid span {
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted)
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px
}

.detail-grid article {
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 235px
}

.detail-grid i {
  font-size: 29px;
  color: var(--teal)
}

.detail-grid article:nth-child(2n) i {
  color: var(--green)
}

.detail-grid h3 {
  margin: 22px 0 9px;
  font: 700 20px/1.1 "Manrope", sans-serif;
  letter-spacing: -.04em
}

.detail-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  color: var(--muted)
}

.branch-overview {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 45px
}

.branch-summary {
  display: grid;
  gap: 0
}

.branch-summary article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line)
}

.branch-summary i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--mist);
  font-size: 25px;
  color: var(--teal)
}

.branch-summary p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600
}

.branch-operations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  align-self: end
}

.branch-operations div {
  padding: 21px;
  background: #fff
}

.branch-operations i {
  font-size: 25px;
  color: var(--teal)
}

.branch-operations h3 {
  margin: 12px 0 7px;
  font-size: 16px
}

.branch-operations p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted)
}

@media(max-width:900px) {

  .metric-grid,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .branch-overview {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {

  .metric-grid,
  .detail-grid,
  .branch-operations {
    grid-template-columns: 1fr
  }

  .branch-summary article {
    grid-template-columns: 48px 1fr
  }

  .branch-summary p {
    font-size: 15px
  }

  .detail-grid article {
    min-height: auto
  }
}

@media(max-width:900px) {
  .site-header .nav-links.open {
    display: block;
    position: fixed;
    z-index: 100;
    top: 84px;
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100dvh - 84px);
    min-height: calc(100vh - 84px);
    max-height: none;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    box-sizing: border-box;
    padding: 18px 22px 42px
  }

  .site-header .nav-links.open>a,
  .site-header .nav-links.open>.nav-dropdown {
    display: block;
    flex: none
  }

  .site-header {
    overflow: visible
  }
}

@media(max-width:600px) {
  .site-header .nav-links.open {
    top: 72px;
    height: calc(100dvh - 72px);
    min-height: calc(100vh - 72px);
    padding: 14px 16px 38px
  }
}

@media(max-width:900px) {
  .site-header .nav-dropdown-menu {
    display: none
  }

  .site-header .nav-dropdown.expanded .nav-dropdown-menu {
    display: block
  }

  .site-header .nav-dropdown>a {
    padding: 12px 0
  }

  .site-header .nav-dropdown.expanded .nav-chevron {
    transform: rotate(180deg) !important
  }

  .site-header .nav-dropdown-menu a {
    padding: 11px 12px
  }
}

.onboard-page {
  background: #fff
}

.onboard-overview {
  padding: 42px 0 38px
}

.onboard-overview h1 {
  margin: 0 0 9px;
  font: 800 clamp(40px, 5.2vw, 76px)/.96 "Manrope", sans-serif;
  letter-spacing: -.065em;
  color: #0d2b7e;
  text-transform: uppercase
}

.onboard-overview h1 span {
  color: var(--teal)
}

.onboard-tagline {
  margin: 0 0 20px;
  font: 700 clamp(18px, 2vw, 26px)/1.2 "Manrope", sans-serif;
  color: #0d2b7e
}

.onboard-overview-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr 250px;
  align-items: center;
  gap: 28px
}

.onboard-copy {
  padding-top: 10px
}

.onboard-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 9px 17px;
  border-radius: 4px;
  background: #1134a6;
  color: #fff;
  font: 800 13px/1 "Manrope", sans-serif;
  letter-spacing: .035em;
  text-transform: uppercase
}

.onboard-label i {
  font-size: 18px
}

.onboard-copy h2 {
  max-width: 510px;
  margin: 0 0 24px;
  color: #0b5968;
  font: 700 clamp(21px, 2vw, 29px)/1.45 "Manrope", sans-serif;
  letter-spacing: -.04em
}

.onboard-copy p:not(.onboard-label) {
  max-width: 540px;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #14213c
}

.onboard-product-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 335px;
  padding: 34px 24px 25px
}

.onboard-screen {
  position: relative;
  z-index: 2;
  width: min(100%, 365px);
  padding: 17px 15px 22px;
  border: 8px solid #111;
  border-radius: 12px 12px 8px 8px;
  background: #fff;
  box-shadow: 0 14px 0 #222, 0 26px 24px rgba(0, 0, 0, .15)
}

.onboard-screen:after {
  position: absolute;
  content: "";
  right: -38px;
  bottom: -28px;
  left: -38px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2b2b2b, #080808);
  box-shadow: 0 5px 4px rgba(0, 0, 0, .18)
}

.onboard-screen-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #142a92;
  font-weight: 800;
  font-size: 13px
}

.onboard-screen-head span {
  display: flex;
  align-items: center;
  gap: 8px
}

.onboard-screen-head span i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: #1738dc;
  color: #fff
}

.onboard-screen>small {
  display: block;
  margin: 4px 0 15px 33px;
  font-size: 9px;
  color: #546175
}

.onboard-screen-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px
}

.onboard-screen-stats div {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 108px;
  padding: 12px 4px 8px;
  border: 1px solid #e5e9ee;
  border-radius: 5px;
  color: #103098
}

.onboard-screen-stats div:nth-child(2) {
  color: #273bdb
}

.onboard-screen-stats div:nth-child(3) {
  color: #e76531
}

.onboard-screen-stats div:nth-child(4) {
  color: #398747
}

.onboard-screen-stats div:nth-child(5) {
  color: #df3533
}

.onboard-screen-stats i {
  font-size: 20px
}

.onboard-screen-stats strong {
  font-size: 18px
}

.onboard-screen-stats small {
  font-size: 7px;
  text-align: center;
  text-transform: uppercase;
  color: #102062
}

.onboard-trust-mark {
  position: absolute;
  right: 0;
  bottom: 26px;
  display: grid;
  place-items: center;
  color: #c9ccca
}

.onboard-trust-mark>i {
  font-size: 145px
}

.onboard-trust-mark span {
  position: absolute;
  bottom: 8px;
  left: -4px;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #08707c;
  color: #fff
}

.onboard-trust-mark span i {
  font-size: 22px
}

.onboard-outcomes {
  display: grid;
  gap: 10px
}

.onboard-outcomes article {
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid #d9e0e2;
  border-radius: 11px;
  background: #fff
}

.onboard-outcomes>article>i {
  font-size: 37px;
  color: #075f70
}

.onboard-outcomes strong {
  display: block;
  font: 800 29px/1 "Manrope", sans-serif;
  letter-spacing: -.06em;
  color: #075f70
}

.onboard-outcomes span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.25;
  color: #17233a
}

.onboard-capabilities {
  padding: 20px 0 58px
}

.onboard-capabilities .onboard-label {
  margin-bottom: -1px;
  border-radius: 5px 5px 0 0
}

.onboard-capability-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #d9e0e2;
  border-radius: 0 12px 12px 12px;
  overflow: hidden;
  background: #fff
}

.onboard-capability-grid article {
  min-height: 244px;
  padding: 25px 20px;
  border-right: 1px solid #d9e0e2
}

.onboard-capability-grid article:last-child {
  border-right: 0
}

.onboard-capability-grid article>i {
  display: block;
  margin-bottom: 18px;
  font-size: 33px;
  color: #08687a
}

.onboard-capability-grid article:nth-child(2n)>i {
  color: #0a8e65
}

.onboard-capability-grid article:nth-child(4)>i {
  color: #ef5f18
}

.onboard-capability-grid article:nth-child(6)>i {
  color: #21379d
}

.onboard-capability-grid h2 {
  margin: 0 0 14px;
  font: 700 16px/1.28 "Manrope", sans-serif;
  letter-spacing: -.04em;
  color: #075668
}

.onboard-capability-grid h2 span {
  display: block
}

.onboard-capability-grid p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #25364a
}

@media(max-width:1150px) {
  .onboard-overview-grid {
    grid-template-columns: 1fr 1fr
  }

  .onboard-outcomes {
    grid-column: 1/-1;
    grid-template-columns: repeat(4, 1fr)
  }

  .onboard-capability-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .onboard-capability-grid article:nth-child(3) {
    border-right: 0
  }

  .onboard-capability-grid article:nth-child(-n+3) {
    border-bottom: 1px solid #d9e0e2
  }
}

@media(max-width:700px) {
  .onboard-overview {
    padding: 27px 0 32px
  }

  .onboard-overview-grid {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .onboard-copy h2 {
    font-size: 21px
  }

  .onboard-copy p:not(.onboard-label) {
    font-size: 15px
  }

  .onboard-product-visual {
    min-height: 265px;
    padding: 16px
  }

  .onboard-trust-mark {
    right: 4px;
    bottom: 10px
  }

  .onboard-trust-mark>i {
    font-size: 100px
  }

  .onboard-outcomes {
    grid-column: auto;
    grid-template-columns: repeat(2, 1fr)
  }

  .onboard-outcomes article {
    grid-template-columns: 44px 1fr;
    gap: 9px;
    min-height: 85px;
    padding: 10px
  }

  .onboard-outcomes>article>i {
    font-size: 29px
  }

  .onboard-outcomes strong {
    font-size: 24px
  }

  .onboard-outcomes span {
    font-size: 11px
  }

  .onboard-capability-grid {
    grid-template-columns: 1fr;
    border-radius: 0 8px 8px 8px
  }

  .onboard-capability-grid article,
  .onboard-capability-grid article:nth-child(3) {
    min-height: auto;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid #d9e0e2
  }

  .onboard-capability-grid article:last-child {
    border-bottom: 0
  }

  .onboard-capability-grid article>i {
    margin-bottom: 13px
  }

  .onboard-capability-grid h2 {
    font-size: 17px
  }

  .onboard-capability-grid h2 span {
    display: inline
  }

  .onboard-capability-grid p {
    font-size: 13px
  }

  .onboard-screen {
    width: min(100%, 320px)
  }
}

.branch-page {
  background: #fff
}

.branch-overview-page {
  padding: 42px 0 36px
}

.branch-overview-page h1 {
  margin: 0 0 10px;
  font: 800 clamp(40px, 5.2vw, 76px)/.96 "Manrope", sans-serif;
  letter-spacing: -.065em;
  color: #102b86;
  text-transform: uppercase
}

.branch-overview-page h1 span {
  color: var(--teal)
}

.branch-tagline {
  margin: 0 0 24px;
  font: 700 clamp(17px, 2vw, 24px)/1.2 "Manrope", sans-serif;
  color: #102b86;
  text-transform: uppercase
}

.branch-overview-grid {
  display: grid;
  grid-template-columns: .97fr 1.03fr;
  gap: 38px;
  align-items: start
}

.branch-statements {
  display: grid;
  gap: 0
}

.branch-statements article {
  display: grid;
  grid-template-columns: 98px 1fr;
  align-items: start;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid #dce3e5
}

.branch-statements article>i {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #0c2e92;
  color: #fff;
  font-size: 38px
}

.branch-statements article:nth-child(2)>i {
  background: #088666
}

.branch-statements article:nth-child(3)>i {
  background: #77ac15
}

.branch-statements p {
  margin: 4px 0 0;
  color: #132445;
  font: 500 17px/1.6 "Manrope", sans-serif
}

.branch-statements strong {
  color: #087050
}

.branch-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px
}

.branch-benefits article {
  padding: 12px 12px 0;
  text-align: center;
  border-right: 1px solid #dce3e5
}

.branch-benefits article:last-child {
  border-right: 0
}

.branch-benefits i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #e8f0ff;
  color: #1739c5;
  font-size: 25px
}

.branch-benefits article:nth-child(2) i {
  background: #e9f8ee;
  color: #068c5e
}

.branch-benefits article:nth-child(3) i {
  background: #eee9ff;
  color: #5934da
}

.branch-benefits article:nth-child(4) i {
  background: #fff1dd;
  color: #e96c1b
}

.branch-benefits h2 {
  margin: 0 0 10px;
  color: #08318e;
  font: 700 14px/1.28 "Manrope", sans-serif;
  letter-spacing: -.04em
}

.branch-benefits h2 span {
  display: block
}

.branch-benefits p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: #1f3151
}

.branch-dashboard {
  padding: 22px;
  border: 1px solid #dfe5e6;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(19, 45, 69, .06)
}

.branch-dashboard>header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: start;
  margin-bottom: 18px
}

.branch-dashboard>header h2 {
  margin: 0 0 5px;
  color: #112568;
  font: 800 26px/1 "Manrope", sans-serif;
  letter-spacing: -.055em
}

.branch-dashboard>header h2 span {
  font-size: 18px
}

.branch-dashboard>header p,
.branch-dashboard>header time {
  margin: 0;
  font-size: 12px;
  color: #182546
}

.branch-dashboard>header time {
  padding-top: 4px;
  white-space: nowrap
}

.branch-dashboard-grid {
  display: grid;
  grid-template-columns: 1.5fr .93fr;
  gap: 12px
}

.branch-dashboard-main {
  display: grid;
  gap: 12px
}

.dash-panel {
  padding: 14px;
  border: 1px solid #e2e6e8;
  border-radius: 10px;
  background: #fff
}

.dash-panel h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #17264f;
  font: 700 13px/1 "Manrope", sans-serif
}

.dash-panel h3>i:first-child {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 5px;
  background: #0a9c72;
  color: #fff;
  font-size: 15px
}

.dash-panel h3>i:last-child {
  margin-left: auto
}

.dash-panel>small {
  display: block;
  margin: 4px 0 13px 38px;
  font-size: 9px;
  color: #52617c
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px
}

.dash-stats div {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 98px;
  padding: 10px 3px 6px;
  border: 1px solid #e7ebed;
  border-radius: 7px;
  color: #4832e8
}

.dash-stats div:nth-child(2),
.dash-stats div:nth-child(3) {
  color: #e76c22
}

.dash-stats div:nth-child(4) {
  color: #078a60
}

.dash-stats div:nth-child(5) {
  color: #db302e
}

.dash-stats i {
  font-size: 18px
}

.dash-stats strong {
  font: 800 20px/1 "Manrope", sans-serif;
  color: #12205f
}

.dash-stats small {
  text-align: center;
  font-size: 7px;
  line-height: 1.15;
  text-transform: uppercase;
  color: #172254
}

.branch-dashboard-side {
  display: grid;
  gap: 12px
}

.branch-dashboard-side .balance h3>i:first-child {
  background: #5134d8
}

.branch-dashboard-side .alert h3>i:first-child {
  background: #ed2d28
}

.branch-dashboard-side .memo h3>i:first-child {
  background: #049b74
}

.balance>p {
  margin: 8px 0 8px;
  color: #079467;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase
}

.balance>strong {
  display: block;
  margin: 0 0 5px;
  font: 800 22px/1 "Manrope", sans-serif;
  color: #10235f
}

.balance>div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 10px
}

.balance>div span {
  padding: 7px;
  border: 1px solid #edf0f1;
  border-radius: 4px;
  color: #078f65;
  font-size: 8px
}

.balance>div span+span {
  color: #e33832
}

.balance>div b {
  display: block;
  margin-top: 3px;
  color: #182855;
  font-size: 9px
}

.alert>p,
.memo>p {
  margin: 8px 0 0;
  padding: 9px;
  border-left: 3px solid #f45925;
  border-radius: 4px;
  background: #fff;
  font-size: 9px;
  line-height: 1.35;
  color: #273551
}

.alert p b,
.memo p b {
  color: #15296b
}

.memo p b {
  float: right;
  color: #ec6415;
  text-transform: uppercase
}

.branch-capabilities {
  padding: 0 0 58px
}

.branch-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 -1px -1px 0;
  padding: 10px 18px;
  border-radius: 6px 6px 0 0;
  background: #0f329a;
  color: #fff;
  font: 800 13px/1 "Manrope", sans-serif;
  letter-spacing: .035em;
  text-transform: uppercase
}

.branch-label i {
  font-size: 18px
}

.branch-capability-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid #d9e0e2;
  border-radius: 0 12px 12px 12px;
  overflow: hidden
}

.branch-capability-grid article {
  min-height: 195px;
  padding: 23px 16px;
  border-right: 1px solid #d9e0e2;
  text-align: center
}

.branch-capability-grid article:last-child {
  border-right: 0
}

.branch-capability-grid article>i {
  display: block;
  margin-bottom: 15px;
  color: #0b2e9c;
  font-size: 33px
}

.branch-capability-grid h2 {
  margin: 0 0 12px;
  color: #0b2e9c;
  font: 700 15px/1.3 "Manrope", sans-serif;
  letter-spacing: -.04em
}

.branch-capability-grid h2 span {
  display: block
}

.branch-capability-grid p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: #253653
}

@media(max-width:1150px) {
  .branch-overview-grid {
    grid-template-columns: 1fr
  }

  .branch-benefits {
    max-width: 700px
  }

  .branch-capability-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .branch-capability-grid article:nth-child(4) {
    border-right: 0
  }

  .branch-capability-grid article:nth-child(-n+4) {
    border-bottom: 1px solid #d9e0e2
  }
}

@media(max-width:700px) {
  .branch-overview-page {
    padding: 27px 0 28px
  }

  .branch-overview-grid {
    gap: 25px
  }

  .branch-statements article {
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 15px 0
  }

  .branch-statements article>i {
    width: 50px;
    height: 50px;
    font-size: 24px
  }

  .branch-statements p {
    margin: 0;
    font-size: 14px
  }

  .branch-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 0
  }

  .branch-benefits article:nth-child(2) {
    border-right: 0
  }

  .branch-benefits article:nth-child(-n+2) {
    border-bottom: 1px solid #dce3e5;
    padding-bottom: 15px
  }

  .branch-dashboard {
    padding: 14px
  }

  .branch-dashboard>header {
    display: block
  }

  .branch-dashboard>header h2 {
    font-size: 21px
  }

  .branch-dashboard>header time {
    display: block;
    margin-top: 8px
  }

  .branch-dashboard-grid {
    grid-template-columns: 1fr
  }

  .dash-stats div {
    min-height: 82px
  }

  .dash-stats strong {
    font-size: 16px
  }

  .branch-capability-grid {
    grid-template-columns: 1fr;
    border-radius: 0 8px 8px 8px
  }

  .branch-capability-grid article,
  .branch-capability-grid article:nth-child(4) {
    min-height: auto;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid #d9e0e2;
    text-align: left
  }

  .branch-capability-grid article:last-child {
    border-bottom: 0
  }

  .branch-capability-grid article>i {
    margin-bottom: 10px
  }

  .branch-capability-grid h2 span {
    display: inline
  }

  .branch-capability-grid p {
    font-size: 13px
  }
}

.medi-page {
  background: #fff
}

.medi-overview {
  padding: 36px 0 20px;
  overflow: hidden
}

.medi-title {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 2px;
  color: #0c2f87
}

.medi-title>i {
  display: grid;
  place-items: center;
  width: 83px;
  height: 83px;
  border-radius: 10px;
  background: #0b8896;
  color: #fff;
  font-size: 47px
}

.medi-title h1 {
  margin: 0;
  font: 800 clamp(42px, 5.5vw, 76px)/.83 "Manrope", sans-serif;
  letter-spacing: -.07em
}

.medi-title h1 span {
  color: var(--teal)
}

.medi-title h1 small {
  display: block;
  margin: 14px 0 0;
  font: 700 clamp(14px, 1.45vw, 21px)/1 "Manrope", sans-serif;
  letter-spacing: .27em;
  text-transform: uppercase
}

.medi-tagline {
  margin: 22px 0 23px 101px;
  color: var(--teal);
  font: 500 clamp(21px, 2.25vw, 31px)/1 "Manrope", sans-serif;
  letter-spacing: -.04em
}

.medi-top-grid {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 34px;
  align-items: center
}

.medi-copy>p {
  max-width: 460px;
  margin: 0 0 27px;
  color: #102569;
  font: 500 clamp(19px, 2vw, 27px)/1.42 "Manrope", sans-serif;
  letter-spacing: -.035em
}

.medi-benefit-list {
  display: grid;
  gap: 14px
}

.medi-benefit-list article {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 16px;
  align-items: start
}

.medi-benefit-list article>i {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #087b88;
  color: #fff;
  font-size: 27px
}

.medi-benefit-list h2 {
  margin: 2px 0 4px;
  color: #0d2b7b;
  font: 700 18px/1.2 "Manrope", sans-serif;
  letter-spacing: -.04em
}

.medi-benefit-list p {
  margin: 0;
  color: #19306d;
  font-size: 14px;
  line-height: 1.45
}

.medi-network {
  position: relative;
  min-height: 437px;
  background: radial-gradient(circle at 50% 47%, rgba(12, 155, 168, .08), transparent 31%)
}

.medi-network:before,
.medi-network:after {
  position: absolute;
  content: "";
  top: 58px;
  bottom: 90px;
  border-left: 2px dashed #27a5b6
}

.medi-network:before {
  left: 23%;
  transform: rotate(33deg)
}

.medi-network:after {
  right: 23%;
  transform: rotate(-33deg)
}

.medi-cloud {
  position: absolute;
  z-index: 2;
  top: 43%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 196px;
  height: 106px;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  background: linear-gradient(130deg, #0f9cb0, #027789);
  box-shadow: 0 12px 20px rgba(1, 93, 108, .18);
  color: #fff;
  font: 800 23px/1 "Manrope", sans-serif;
  text-align: center
}

.medi-cloud:before,
.medi-cloud:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: inherit
}

.medi-cloud:before {
  width: 84px;
  height: 84px;
  top: -31px;
  left: 32px
}

.medi-cloud:after {
  width: 68px;
  height: 68px;
  top: -18px;
  right: 22px
}

.medi-cloud span {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 17px;
  text-transform: uppercase
}

.medi-node {
  position: absolute;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #0e2b75;
  font: 700 14px/1.05 "Manrope", sans-serif;
  text-align: center
}

.medi-node i {
  display: grid;
  place-items: center;
  width: 77px;
  height: 77px;
  border: 1px solid #d8e4ea;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 8px rgba(14, 49, 88, .08);
  color: #0c8392;
  font-size: 33px
}

.medi-node.wearable {
  top: 5px;
  left: 23%
}

.medi-node.monitor {
  top: -3px;
  left: 50%;
  transform: translateX(-50%)
}

.medi-node.bed {
  top: 7px;
  right: 11%
}

.medi-node.ventilator {
  top: 44%;
  left: 3%
}

.medi-node.sensor {
  top: 43%;
  right: 0
}

.medi-node.pump {
  right: 12%;
  bottom: 17px
}

.medi-wifi {
  position: absolute;
  z-index: 2;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  color: #078c9d;
  font-size: 47px
}

.medi-system-preview {
  position: relative;
  min-height: 355px;
  margin-top: -32px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fcfd 0, #ddeef2 61%, #eaf0f2 61%)
}

.medi-hospital {
  position: absolute;
  top: 45px;
  left: 29%;
  width: 60%;
  height: 205px;
  padding: 24px 20px;
  background: linear-gradient(115deg, #e5eced, #bdced0);
  border-top: 7px solid #bccacc;
  box-shadow: 0 7px 18px rgba(14, 62, 78, .18);
  color: #0f4b89;
  font: 800 28px/1 "Manrope", sans-serif;
  text-transform: uppercase
}

.medi-hospital span {
  display: flex;
  gap: 13px;
  align-items: center
}

.medi-hospital span i {
  font-size: 47px
}

.medi-hospital b {
  display: inline-block;
  width: 12%;
  height: 23px;
  margin: 36px 3% 0 0;
  background: repeating-linear-gradient(90deg, #4380a9 0 8px, #b9dcf3 8px 16px)
}

.medi-dashboard {
  position: absolute;
  z-index: 4;
  bottom: 23px;
  left: 35%;
  width: 45%;
  min-width: 430px;
  border: 8px solid #111c28;
  border-radius: 12px;
  background: #0b2744;
  box-shadow: 0 14px 0 #19212b, 0 20px 22px rgba(1, 31, 59, .25);
  color: #f5ffff
}

.medi-dashboard>header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-weight: 800
}

.medi-dashboard>header>i {
  color: #32cce0
}

.medi-dashboard>header span {
  display: flex;
  gap: 10px;
  margin-left: auto;
  font-size: 11px
}

.medi-dashboard-body {
  display: grid;
  grid-template-columns: 35px 1fr
}

.medi-dashboard-body>aside {
  display: grid;
  align-content: start;
  gap: 17px;
  padding: 16px 10px;
  color: #d2ecf0;
  font-size: 13px;
  background: #09213a
}

.medi-dashboard-body>div {
  padding: 12px
}

.medi-dashboard-body h2 {
  margin: 0 0 10px;
  font-size: 12px
}

.medi-dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.medi-dashboard-cards article {
  min-height: 90px;
  padding: 9px;
  border-radius: 5px;
  background: #0c3355
}

.medi-dashboard-cards small {
  display: block;
  color: #d6e7ed;
  font-size: 9px
}

.medi-dashboard-cards strong {
  display: block;
  margin: 13px 0 7px;
  color: #fff;
  font-size: 19px
}

.medi-dashboard-cards strong i {
  color: #e54054
}

.medi-dashboard-cards strong em {
  font-size: 9px;
  font-style: normal
}

.medi-dashboard-cards span {
  display: block;
  color: #72e4ee;
  font-size: 8px;
  line-height: 1.45
}

.medi-pulse {
  height: 18px;
  background: linear-gradient(170deg, transparent 43%, #37d6e1 45%, transparent 47%, transparent 55%, #37d6e1 57%, transparent 59%)
}

.medi-tablet {
  position: absolute;
  z-index: 5;
  right: 8%;
  bottom: 24px;
  width: 21%;
  min-width: 180px;
  padding: 10px;
  border: 8px solid #121d28;
  border-radius: 13px;
  background: #0c2745;
  box-shadow: 0 12px 18px rgba(1, 31, 59, .25);
  color: #fff
}

.medi-tablet header {
  margin-bottom: 8px;
  font-size: 11px
}

.medi-tablet>div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 18px 15px;
  min-height: 100px;
  background: linear-gradient(135deg, #0a2948, #153d60);
  color: #e7f5f6;
  font-size: 27px
}

.medi-tablet small {
  display: block;
  margin-top: 9px
}

.medi-mobile {
  position: absolute;
  z-index: 6;
  right: 1.2%;
  bottom: 20px;
  width: 12%;
  min-width: 117px;
  padding: 9px;
  border: 6px solid #121d28;
  border-radius: 18px;
  background: #0a2949;
  box-shadow: 0 10px 18px rgba(1, 31, 59, .28);
  color: #fff
}

.medi-mobile header {
  font-size: 9px;
  font-weight: 800
}

.medi-mobile h2 {
  margin: 15px 0 8px;
  font-size: 10px
}

.medi-mobile p {
  display: flex;
  justify-content: space-between;
  margin: 4px 0;
  padding: 7px;
  border-radius: 4px;
  background: #087e95;
  font-size: 8px
}

.medi-mobile p:nth-of-type(2) {
  background: #148c70
}

.medi-mobile p:nth-of-type(3) {
  background: #d89012
}

.medi-mobile p:nth-of-type(4) {
  background: #2362ae
}

.medi-outcomes {
  padding: 0 0 60px
}

.medi-outcome-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid #dce4e4;
  border-radius: 0 0 20px 20px;
  overflow: hidden
}

.medi-outcome-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  padding: 10px;
  border-right: 1px solid #dce4e4;
  color: #0b6d7d
}

.medi-outcome-grid article:last-child {
  border-right: 0
}

.medi-outcome-grid i {
  font-size: 28px
}

.medi-outcome-grid span {
  color: #102b78;
  font: 700 12px/1.3 "Manrope", sans-serif
}

@media(max-width:1100px) {
  .medi-top-grid {
    grid-template-columns: 1fr
  }

  .medi-network {
    max-width: 740px;
    margin: auto;
    width: 100%
  }

  .medi-system-preview {
    margin-top: 0
  }

  .medi-dashboard {
    left: 25%
  }

  .medi-outcome-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .medi-outcome-grid article:nth-child(4) {
    border-right: 0
  }

  .medi-outcome-grid article:nth-child(-n+4) {
    border-bottom: 1px solid #dce4e4
  }
}

@media(max-width:700px) {
  .medi-overview {
    padding-top: 27px
  }

  .medi-title {
    gap: 10px
  }

  .medi-title>i {
    width: 57px;
    height: 57px;
    border-radius: 8px;
    font-size: 31px
  }

  .medi-title h1 {
    font-size: 42px
  }

  .medi-title h1 small {
    margin-top: 9px;
    font-size: 11px;
    letter-spacing: .19em
  }

  .medi-tagline {
    margin: 16px 0 20px 67px;
    font-size: 19px
  }

  .medi-copy>p {
    font-size: 18px
  }

  .medi-benefit-list article {
    grid-template-columns: 52px 1fr;
    gap: 12px
  }

  .medi-benefit-list article>i {
    width: 45px;
    height: 45px;
    font-size: 21px
  }

  .medi-benefit-list h2 {
    font-size: 16px
  }

  .medi-benefit-list p {
    font-size: 13px
  }

  .medi-network {
    min-height: 400px;
    transform: scale(.93);
    transform-origin: top center;
    margin-bottom: -25px
  }

  .medi-node i {
    width: 61px;
    height: 61px;
    font-size: 26px
  }

  .medi-node {
    font-size: 11px
  }

  .medi-cloud {
    width: 164px;
    height: 91px;
    font-size: 19px
  }

  .medi-cloud span {
    font-size: 14px
  }

  .medi-system-preview {
    min-height: 260px
  }

  .medi-hospital {
    top: 28px;
    left: 2%;
    width: 96%;
    height: 132px;
    padding: 16px;
    font-size: 20px
  }

  .medi-hospital span i {
    font-size: 33px
  }

  .medi-hospital b {
    height: 17px;
    margin-top: 25px
  }

  .medi-dashboard {
    bottom: 17px;
    left: 4%;
    width: 70%;
    min-width: 0;
    border-width: 5px
  }

  .medi-dashboard>header {
    padding: 7px;
    font-size: 10px
  }

  .medi-dashboard-body {
    grid-template-columns: 24px 1fr
  }

  .medi-dashboard-body>aside {
    gap: 10px;
    padding: 9px 6px;
    font-size: 9px
  }

  .medi-dashboard-body>div {
    padding: 7px
  }

  .medi-dashboard-body h2 {
    font-size: 9px
  }

  .medi-dashboard-cards {
    gap: 4px
  }

  .medi-dashboard-cards article {
    min-height: 59px;
    padding: 5px
  }

  .medi-dashboard-cards small {
    font-size: 6px
  }

  .medi-dashboard-cards strong {
    margin: 7px 0 4px;
    font-size: 12px
  }

  .medi-dashboard-cards span {
    font-size: 6px
  }

  .medi-tablet {
    right: 2%;
    bottom: 15px;
    width: 26%;
    min-width: 0;
    padding: 5px;
    border-width: 5px;
    border-radius: 8px
  }

  .medi-tablet header {
    font-size: 7px
  }

  .medi-tablet>div {
    gap: 6px;
    min-height: 63px;
    padding: 9px 6px;
    font-size: 16px
  }

  .medi-tablet small {
    font-size: 7px
  }

  .medi-mobile {
    display: none
  }

  .medi-outcome-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0 0 10px 10px
  }

  .medi-outcome-grid article,
  .medi-outcome-grid article:nth-child(4) {
    border-right: 1px solid #dce4e4;
    border-bottom: 1px solid #dce4e4
  }

  .medi-outcome-grid article:nth-child(2n) {
    border-right: 0
  }

  .medi-outcome-grid article:last-child {
    border-bottom: 0
  }

  .medi-outcome-grid i {
    font-size: 24px
  }

  .medi-outcome-grid span {
    font-size: 11px
  }
}

.medi-system-preview {
  margin-top: 16px
}

.college-page {
  background: #fff
}

.college-overview {
  padding: 36px 0 48px;
  overflow: hidden
}

.college-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 40px
}

.college-intro {
  position: relative;
  padding: 5px 28px 18px 8px
}

.college-intro:after {
  position: absolute;
  top: -80px;
  right: -20px;
  bottom: -80px;
  width: 2px;
  content: "";
  background: linear-gradient(#e88416, #143d20, #e88416);
  transform: rotate(-4deg)
}

.college-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  padding: 10px 21px;
  border-radius: 18px;
  background: #06370d;
  color: #fff;
  font: 700 14px/1.25 "Manrope", sans-serif
}

.college-pill i {
  font-size: 24px;
  color: #a6d632
}

.college-intro h1 {
  margin: 0;
  color: #053e13;
  font: 800 clamp(50px, 6.2vw, 83px)/.87 "Manrope", sans-serif;
  letter-spacing: -.07em;
  text-transform: uppercase
}

.college-intro h1 span {
  color: #e17c0a
}

.college-summary {
  max-width: 600px;
  margin: 24px 0 19px;
  font: 500 17px/1.5 "Manrope", sans-serif;
  color: #182b21
}

.college-section-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 15px;
  color: #164427;
  font: 800 18px/1 "Manrope", sans-serif;
  text-transform: uppercase
}

.college-section-title:before,
.college-section-title:after {
  height: 1px;
  flex: 1;
  content: "";
  background: #164427
}

.college-modules {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 12px
}

.college-modules article {
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center
}

.college-modules i {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid #dce6dc;
  border-radius: 50%;
  background: #fff;
  color: #194a21;
  font-size: 29px;
  box-shadow: 0 2px 4px rgba(14, 55, 24, .06)
}

.college-modules article:nth-child(2n) i {
  color: #db7b0b
}

.college-modules article:nth-child(3n) i {
  color: #637e0c
}

.college-modules article:nth-child(4n) i {
  color: #34378c
}

.college-modules article:nth-child(5n) i {
  color: #0d7d94
}

.college-modules article:nth-child(6n) i {
  color: #9a1a20
}

.college-modules span {
  color: #162c1d;
  font: 800 10px/1.3 "Manrope", sans-serif;
  text-transform: uppercase
}

.college-side {
  padding: 9px 0 0
}

.college-side-heading,
.college-benefit-title {
  margin: 0 0 15px;
  color: #123d22;
  font: 800 17px/1.28 "Manrope", sans-serif;
  letter-spacing: .03em;
  text-align: center;
  text-transform: uppercase
}

.college-side-heading:before,
.college-side-heading:after,
.college-benefit-title:before,
.college-benefit-title:after {
  display: inline-block;
  width: 37px;
  height: 2px;
  margin: 0 13px 5px;
  content: "";
  background: #dd810f
}

.college-campus {
  display: grid;
  place-items: end center;
  min-height: 230px;
  margin-bottom: 21px;
  border-radius: 24px;
  background: linear-gradient(180deg, #65b3f0 0 43%, #a4d4ee 43%, #d0e3bd 44% 62%, #75a649 63% 100%);
  overflow: hidden
}

.college-campus>div {
  position: relative;
  width: 80%;
  height: 150px;
  padding: 20px 12px;
  background: #f4efdf;
  border: 8px solid #e2d7bf;
  box-shadow: 0 9px 16px rgba(40, 74, 45, .28);
  color: #155185
}

.college-campus>div:before {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 25px;
  content: "";
  background: #d0ba91
}

.college-campus i {
  display: block;
  margin-bottom: 12px;
  color: #1c6298;
  font-size: 40px
}

.college-campus b {
  display: inline-block;
  width: 12%;
  height: 28px;
  margin: 0 3% 0 0;
  background: repeating-linear-gradient(90deg, #266691 0 7px, #9cd0eb 7px 14px)
}

.college-benefit-title {
  margin-bottom: 12px
}

.college-benefits {
  display: grid;
  gap: 6px
}

.college-benefits article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 13px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid #e2e5e2;
  border-radius: 10px
}

.college-benefits article>i {
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border-radius: 7px;
  background: #669d2c;
  color: #fff;
  font-size: 21px
}

.college-benefits article:nth-child(2)>i {
  background: #df800a
}

.college-benefits article:nth-child(3)>i {
  background: #087a92
}

.college-benefits article:nth-child(4)>i {
  background: #75429b
}

.college-benefits article:nth-child(5)>i {
  background: #688b19
}

.college-benefits article:nth-child(6)>i {
  background: #133d96
}

.college-benefits h2 {
  margin: 0 0 2px;
  color: #153b24;
  font: 700 14px/1.2 "Manrope", sans-serif
}

.college-benefits p {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: #2b3a30
}

.college-outcomes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 18px;
  border: 1px solid #e0e4de;
  border-radius: 9px;
  overflow: hidden
}

.college-outcomes article {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px;
  border-right: 1px solid #e0e4de
}

.college-outcomes article:last-child {
  border-right: 0
}

.college-outcomes i {
  color: #4d7f1f;
  font-size: 30px
}

.college-outcomes article:nth-child(2) i {
  color: #4f8d1d
}

.college-outcomes article:nth-child(3) i {
  color: #29449c
}

.college-outcomes article:nth-child(4) i {
  color: #743a9c
}

.college-outcomes article:nth-child(5) i {
  color: #de820b
}

.college-outcomes span {
  color: #173b23;
  font: 700 12px/1.3 "Manrope", sans-serif
}

.college-outcomes small {
  display: block;
  margin-top: 4px;
  color: #46554b;
  font: 400 10px/1.35 "DM Sans", sans-serif
}

@media(max-width:1050px) {
  .college-grid {
    grid-template-columns: 1fr
  }

  .college-intro:after {
    display: none
  }

  .college-side {
    max-width: 620px;
    margin: auto
  }

  .college-modules {
    grid-template-columns: repeat(6, 1fr)
  }
}

@media(max-width:700px) {
  .college-overview {
    padding: 27px 0 35px
  }

  .college-intro {
    padding: 0
  }

  .college-pill {
    font-size: 11px
  }

  .college-intro h1 {
    font-size: 50px
  }

  .college-summary {
    font-size: 15px
  }

  .college-modules {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 9px
  }

  .college-modules i {
    width: 57px;
    height: 57px;
    font-size: 25px
  }

  .college-modules span {
    font-size: 9px
  }

  .college-campus {
    min-height: 190px
  }

  .college-outcomes {
    grid-template-columns: 1fr
  }

  .college-outcomes article {
    border-right: 0;
    border-bottom: 1px solid #e0e4de
  }

  .college-outcomes article:last-child {
    border-bottom: 0
  }

  .college-benefits h2 {
    font-size: 13px
  }
}

.health-page {
  background: #fff
}

.health-portfolio {
  padding: 36px 0 50px
}

.health-title {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #0d2d89
}

.health-title>i {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 9px;
  background: #087d89;
  color: #fff;
  font-size: 37px
}

.health-title h1 {
  margin: 0;
  font: 800 clamp(42px, 5.6vw, 73px)/.9 "Manrope", sans-serif;
  letter-spacing: -.065em;
  text-transform: uppercase
}

.health-title h1 small {
  display: block;
  margin-top: 8px;
  font: 700 clamp(19px, 2.4vw, 33px)/1 "Manrope", sans-serif
}

.health-title h1 small span {
  color: var(--teal)
}

.health-tagline {
  margin: 13px 0 24px 82px;
  font: 600 24px/1 "Manrope", sans-serif;
  color: #555
}

.health-band {
  max-width: 620px;
  margin: 0 auto 15px;
  padding: 9px;
  border-radius: 6px;
  background: linear-gradient(90deg, #0c3189, #087d89);
  color: #fff;
  font: 700 17px/1 "Manrope", sans-serif;
  text-align: center
}

.health-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.health-service-grid article {
  min-height: 273px;
  padding: 22px;
  border: 1px solid #e0e4e5;
  border-radius: 10px;
  background: #fff
}

.health-service-grid article>i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #0b7d8b;
  color: #fff;
  font-size: 29px
}

.health-service-grid article:nth-child(2n)>i {
  background: #0d318c
}

.health-service-grid h2 {
  margin: 0 0 15px;
  color: #076779;
  font: 700 20px/1.2 "Manrope", sans-serif;
  letter-spacing: -.05em
}

.health-service-grid li {
  margin: 0 0 8px;
  color: #16213d;
  font-size: 13px;
  line-height: 1.4
}

.health-service-grid ul {
  margin: 0;
  padding-left: 18px
}

.health-service-grid li::marker {
  color: #07828e
}

.health-enablers {
  display: grid;
  grid-template-columns: 1.1fr repeat(5, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  padding: 12px;
  border: 1px solid #dfe4e4;
  border-radius: 9px
}

.health-enablers strong {
  padding: 12px;
  color: #fff;
  background: linear-gradient(90deg, #0a6171, #0b9aa7);
  font: 800 15px/1.2 "Manrope", sans-serif;
  text-transform: uppercase
}

.health-enablers span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0e2d7d;
  font: 700 12px/1.32 "Manrope", sans-serif
}

.health-enablers i {
  font-size: 25px;
  color: #07808d
}

@media(max-width:900px) {
  .health-service-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .health-enablers {
    grid-template-columns: repeat(3, 1fr)
  }

  .health-enablers strong {
    grid-column: 1/-1
  }
}

@media(max-width:600px) {
  .health-portfolio {
    padding: 27px 0 35px
  }

  .health-title>i {
    width: 53px;
    height: 53px;
    font-size: 30px
  }

  .health-title h1 {
    font-size: 41px
  }

  .health-tagline {
    margin-left: 68px;
    font-size: 18px
  }

  .health-band {
    font-size: 14px
  }

  .health-service-grid {
    grid-template-columns: 1fr
  }

  .health-service-grid article {
    min-height: auto
  }

  .health-enablers {
    grid-template-columns: 1fr
  }

  .health-enablers strong {
    grid-column: auto
  }

  .health-enablers span {
    font-size: 13px
  }
}

.bank-page {
  background: #fff
}

.bank-portfolio {
  padding: 36px 0 52px
}

.bank-portfolio h1 {
  margin: 0;
  color: #0b2d83;
  font: 800 clamp(42px, 5.6vw, 72px)/.9 "Manrope", sans-serif;
  letter-spacing: -.065em;
  text-transform: uppercase
}

.bank-portfolio h1 span {
  color: #087a31
}

.bank-subtitle {
  margin: 8px 0 13px;
  font: 500 22px/1.2 "Manrope", sans-serif;
  color: #333
}

.bank-band {
  max-width: 580px;
  margin: 0 auto 13px;
  padding: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, #0c2c83, #087c2a);
  color: #fff;
  font: 700 16px/1 "Manrope", sans-serif;
  text-align: center
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.bank-grid article {
  min-height: 276px;
  padding: 21px;
  border: 1px solid #e0e4e5;
  border-radius: 9px;
  background: #fff
}

.bank-grid article>i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: -45px auto 17px;
  border-radius: 50%;
  background: #0b2d83;
  color: #fff;
  font-size: 29px
}

.bank-grid article:nth-child(2n)>i {
  background: #087c2a
}

.bank-grid h2 {
  margin: 0 0 17px;
  color: #0b2d83;
  font: 700 17px/1.2 "Manrope", sans-serif;
  text-align: center
}

.bank-grid article:nth-child(2n) h2 {
  color: #08702b
}

.bank-grid ul {
  margin: 0;
  padding-left: 17px
}

.bank-grid li {
  margin-bottom: 8px;
  color: #15203b;
  font-size: 12px;
  line-height: 1.4
}

.bank-grid li::marker {
  color: #0b2d83
}

.bank-enablers {
  display: grid;
  grid-template-columns: 1.1fr repeat(5, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 17px;
  padding: 11px;
  border: 1px solid #dfe4e4
}

.bank-enablers strong {
  padding: 15px;
  color: #fff;
  background: #0b2d83;
  font: 800 14px/1.1 "Manrope", sans-serif;
  text-transform: uppercase
}

.bank-enablers span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #142568;
  font: 700 11px/1.3 "Manrope", sans-serif
}

.bank-enablers i {
  color: #087c2a;
  font-size: 27px
}

@media(max-width:950px) {
  .bank-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 46px 12px
  }

  .bank-enablers {
    grid-template-columns: repeat(3, 1fr)
  }

  .bank-enablers strong {
    grid-column: 1/-1
  }
}

@media(max-width:600px) {
  .bank-portfolio {
    padding: 28px 0 45px
  }

  .bank-subtitle {
    font-size: 16px
  }

  .bank-band {
    font-size: 13px
  }

  .bank-grid {
    grid-template-columns: 1fr;
    gap: 45px
  }

  .bank-grid article {
    min-height: auto
  }

  .bank-enablers {
    grid-template-columns: 1fr
  }

  .bank-enablers strong {
    grid-column: auto
  }

  .bank-enablers span {
    font-size: 13px
  }
}

.bank-band {
  margin-bottom: 58px
}

@media(max-width:600px) {
  .bank-band {
    margin-bottom: 48px
  }
}

.erp-page {
  background: #fff
}

.erp-portfolio {
  padding: 36px 0 52px
}

.erp-portfolio h1 {
  margin: 0;
  color: #0b2d83;
  font: 800 clamp(39px, 5vw, 68px)/.92 "Manrope", sans-serif;
  letter-spacing: -.06em;
  text-transform: uppercase
}

.erp-portfolio h1 span {
  color: #087b26
}

.erp-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  margin: 18px 0
}

.erp-top h2 {
  margin: 0 0 12px;
  font-size: 22px
}

.erp-top p {
  max-width: 580px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65
}

.erp-top aside {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #dce3e5;
  border-radius: 11px;
  position: relative;
  padding-top: 38px
}

.erp-top aside strong {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 22px;
  border-radius: 18px;
  background: #0b2d83;
  color: #fff;
  white-space: nowrap;
  font-size: 12px;
  text-transform: uppercase
}

.erp-top aside span {
  padding: 11px 7px;
  text-align: center;
  border-right: 1px solid #dce3e5;
  font: 600 10px/1.35 "Manrope", sans-serif
}

.erp-top aside span:last-child {
  border: 0
}

.erp-top aside i {
  display: block;
  margin-bottom: 8px;
  color: #087a31;
  font-size: 28px
}

.erp-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 16px;
  color: #0b2d83;
  font: 800 18px/1 "Manrope", sans-serif;
  text-align: center;
  text-transform: uppercase
}

.erp-label:before,
.erp-label:after {
  height: 1px;
  flex: 1;
  content: "";
  background: #0b2d83
}

.erp-solutions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.erp-solutions article {
  padding: 19px;
  border: 1px solid #dce3e5;
  border-radius: 10px
}

.erp-solutions h2 {
  margin: 0 0 13px;
  padding: 10px;
  border-radius: 16px;
  background: #0b2d83;
  color: #fff;
  font: 700 16px/1 "Manrope", sans-serif
}

.erp-solutions article:nth-child(2) h2 {
  background: #087b26
}

.erp-solutions p {
  min-height: 42px;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.4
}

.erp-solutions ul {
  margin: 0;
  padding-left: 18px
}

.erp-solutions li {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.3
}

.erp-solutions li::marker {
  color: #0b2d83
}

.erp-bottom {
  display: grid;
  grid-template-columns: .85fr 1.55fr 1fr;
  gap: 16px;
  margin-top: 18px
}

.erp-bottom article {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid #dce3e5;
  border-radius: 9px;
  overflow: hidden
}

.erp-bottom article:nth-child(2) {
  grid-template-columns: repeat(5, 1fr)
}

.erp-bottom article:nth-child(3) {
  grid-template-columns: 1fr
}

.erp-bottom strong {
  grid-column: 1/-1;
  padding: 8px 14px;
  background: #0b2d83;
  color: #fff;
  font: 800 12px/1 "Manrope", text-transform:uppercase
}

.erp-bottom span {
  padding: 10px;
  font-size: 11px;
  line-height: 1.35
}

.erp-bottom i {
  display: block;
  margin-bottom: 5px;
  color: #087b26;
  font-size: 22px
}

@media(max-width:950px) {
  .erp-top {
    grid-template-columns: 1fr
  }

  .erp-solutions {
    grid-template-columns: 1fr
  }

  .erp-bottom {
    grid-template-columns: 1fr
  }

  .erp-bottom article:nth-child(2) {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:600px) {
  .erp-portfolio {
    padding: 28px 0 42px
  }

  .erp-top aside {
    grid-template-columns: repeat(3, 1fr);
    gap: 0
  }

  .erp-top aside span {
    border-bottom: 1px solid #dce3e5
  }

  .erp-bottom article:nth-child(2) {
    grid-template-columns: repeat(2, 1fr)
  }

  .erp-portfolio h1 {
    font-size: 39px
  }
}

.erp-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  padding: 15px;
  background: #eff3fb;
  color: #0b2d83;
  text-align: center
}

.erp-summary>i {
  font-size: 36px
}

.erp-summary p {
  margin: 0;
  font: 700 14px/1.4 "Manrope", sans-serif
}

.erp-summary small {
  display: block;
  font: 500 12px/1.5 "Manrope", sans-serif
}

.erp-summary b {
  color: #087b26
}

@media(max-width:600px) {
  .erp-summary {
    align-items: flex-start;
    text-align: left
  }

  .erp-summary p {
    font-size: 12px
  }
}

.erp-bottom article:nth-child(2) span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center
}

.erp-bottom article:nth-child(2) i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 50%;
  background: #edf0fb;
  color: #0b2d83;
  font-size: 27px
}

.erp-bottom article:nth-child(2) span:nth-of-type(3n) i {
  background: #edf5e7;
  color: #087b26
}

.erp-bottom article:nth-child(2) span:nth-of-type(4n) i {
  background: #edf5e7;
  color: #087b26
}

@media(max-width:600px) {
  .erp-bottom article:nth-child(2) i {
    width: 48px;
    height: 48px
  }
}

.erp-bottom article:nth-child(2) {
  grid-template-columns: repeat(3, 1fr)
}

@media(max-width:600px) {
  .erp-bottom article:nth-child(2) {
    grid-template-columns: repeat(2, 1fr)
  }
}

.employee-voices {
  background: var(--mist);
  padding-top: 10px
}

.employee-voices .section-head {
  position: relative;
  overflow: hidden
}

.life-at-caixa-art {
  position: absolute;
  z-index: 0;
  top: -18px;
  right: 0;
  display: block;
  width: min(48vw, 620px);
  height: 175px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  opacity: .72;
  filter: saturate(.86) contrast(1.02);
  mask-image: linear-gradient(to right, transparent 0, #000 11%, #000 89%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 11%, #000 89%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  pointer-events: none
}

.employee-voices .section-head>div,
.employee-voices .section-head>.lead {
  position: relative;
  z-index: 1
}

@media(max-width:900px) {
  .life-at-caixa-art {
    width: 58vw;
    height: 155px;
    opacity: .42
  }
}

@media(max-width:600px) {
  .life-at-caixa-art {
    top: 0;
    width: 76vw;
    height: 125px;
    opacity: .2
  }
}

.employee-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.employee-quote-grid figure {
  min-height: 264px;
  margin: 0;
  padding: 29px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column
}

.employee-quote-grid>figure>i {
  margin-bottom: 22px;
  color: var(--green);
  font-size: 32px
}

.employee-quote-grid blockquote {
  margin: 0;
  color: var(--ink);
  font: 600 18px/1.55 "Manrope", sans-serif;
  letter-spacing: -.035em
}

.employee-quote-grid figcaption {
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--line)
}

.employee-quote-grid figcaption strong,
.employee-quote-grid figcaption span {
  display: block
}

.employee-quote-grid figcaption strong {
  font-size: 13px
}

.employee-quote-grid figcaption span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px
}

@media(max-width:900px) {
  .employee-quote-grid {
    grid-template-columns: 1fr
  }

  .employee-quote-grid figure {
    min-height: auto
  }
}

.hero-home~.section {
  padding-block: 82px
}

.hero-home~.intro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #fff 0 72%, #f2f7f4 72%)
}

.hero-home~.intro:after {
  position: absolute;
  right: 4%;
  bottom: -48px;
  width: 250px;
  height: 250px;
  content: "";
  background: url('../img/caixa-c-mark.png') center/contain no-repeat;
  opacity: .055;
  pointer-events: none
}

.hero-home~.intro .shell {
  position: relative;
  z-index: 1
}

.hero-home~.services,
.hero-home~.products {
  padding-block: 88px
}

.hero-home~.industries,
.hero-home~.why-caixa {
  padding-block: 80px
}

@media(max-width:600px) {

  .hero-home~.section,
  .hero-home~.services,
  .hero-home~.products,
  .hero-home~.industries,
  .hero-home~.why-caixa {
    padding-block: 62px
  }

  .hero-home~.intro {
    background: #fff
  }

  .hero-home~.intro:after {
    right: -58px;
    width: 190px;
    height: 190px
  }
}

.enterprise-cta .enterprise-cta-actions .button {
  background: var(--green);
  color: #fff;
  border-color: var(--green)
}

.enterprise-cta .enterprise-cta-actions .button:hover {
  background: var(--teal);
  border-color: var(--teal)
}

.enterprise-cta .enterprise-cta-actions {
  align-self: center
}

.hero-home~.section {
  padding-block: 36px
}

.hero-home~.services,
.hero-home~.products {
  padding-block: 22px
}

.hero-home~.industries,
.hero-home~.why-caixa {
  padding-block: 22px
}

.hero-home~.enterprise-cta {
  padding-block: 22px
}

@media(max-width:600px) {

  .hero-home~.section,
  .hero-home~.services,
  .hero-home~.products,
  .hero-home~.industries,
  .hero-home~.why-caixa,
  .hero-home~.enterprise-cta {
    padding-block: 22px
  }
}

.site-footer .footer-grid>div:last-child p {
  margin: 14px 0 3px;
  line-height: 1.4
}

.site-footer .footer-grid>div:last-child p+a,
.site-footer .footer-grid>div:last-child p+a+a {
  margin-bottom: 2px
}

.health-page {
  background: var(--paper)
}

.health-portfolio {
  padding-block: 54px 70px
}

.health-title {
  color: var(--ink)
}

.health-title>i {
  border-radius: 50%;
  background: var(--teal)
}

.health-title h1 {
  font-size: clamp(38px, 5vw, 68px);
  text-transform: none
}

.health-title h1 small {
  font-size: clamp(18px, 2.2vw, 29px);
  letter-spacing: -.045em;
  text-transform: none
}

.health-tagline {
  color: var(--muted);
  font-weight: 500
}

.health-band {
  max-width: 670px;
  padding: 13px 18px;
  border-radius: 2px;
  background: var(--ink);
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase
}

.health-service-grid {
  gap: 16px
}

.health-service-grid article {
  min-height: 286px;
  padding: 28px;
  background: var(--mist);
  border-color: var(--line);
  border-radius: 0;
  transition: transform .25s ease, box-shadow .25s ease
}

.health-service-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 0 rgba(16, 37, 55, .1)
}

.health-service-grid article>i {
  width: 48px;
  height: 48px;
  margin-bottom: 27px;
  border-radius: 0;
  background: #fff;
  color: var(--teal);
  font-size: 25px
}

.health-service-grid article:nth-child(2n)>i {
  background: #fff;
  color: var(--green)
}

.health-service-grid article:nth-child(3n)>i {
  background: #fff;
  color: var(--plum)
}

.health-service-grid h2 {
  color: var(--ink);
  font-size: 21px
}

.health-service-grid li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5
}

.health-service-grid li::marker {
  color: var(--green)
}

.health-enablers {
  gap: 0;
  margin-top: 28px;
  padding: 0;
  border-color: var(--line);
  border-radius: 0;
  background: #fff
}

.health-enablers strong {
  padding: 22px;
  background: var(--ink);
  font-size: 13px
}

.health-enablers span {
  min-height: 81px;
  padding: 15px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px
}

.health-enablers span:last-child {
  border-right: 0
}

.health-enablers i {
  color: var(--green)
}

@media(max-width:900px) {
  .health-enablers {
    gap: 0
  }

  .health-enablers span {
    border-bottom: 1px solid var(--line)
  }
}

@media(max-width:600px) {
  .health-portfolio {
    padding-block: 32px 48px
  }

  .health-title h1 small {
    font-size: 18px
  }

  .health-tagline {
    margin-left: 0
  }

  .health-band {
    margin-inline: 0
  }

  .health-service-grid article {
    padding: 24px
  }

  .health-enablers span {
    min-height: 0;
    border-right: 0
  }
}

.hero-home~.why-caixa {
  background: linear-gradient(115deg, #e2efe7 0%, #f5f8f4 58%, #eaf3ed 100%)
}

.hero-home~.services .service-card>i {
  align-self: center
}

.hero-home~.products .product-card>i {
  left: 50%;
  transform: translateX(-50%)
}

.hero-home~.products .product-card:hover>i {
  transform: translateX(-50%) rotate(-7deg) scale(1.08)
}

.hero-home~.industry-grid .industry-card>i,
.hero-home~.why-grid .why-card>i {
  margin-inline: auto
}

.hero-home~.services .service-card,
.hero-home~.products .product-card>div,
.hero-home~.industry-grid .industry-card,
.hero-home~.why-grid .why-card {
  text-align: center
}

.hero-home~.services .service-card small {
  align-self: center
}

.hero-home~.industries .industry-card,
.hero-home~.why-caixa .why-card {
  text-align: center
}

.hero-home~.industries .industry-card>i,
.hero-home~.why-caixa .why-card>i {
  margin-inline: auto
}

.hero-home~.industry-grid,
.hero-home~.why-grid {
  gap: 16px
}

.hero-home~.industries .industry-card,
.hero-home~.why-caixa .why-card {
  min-height: 330px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  align-items: stretch
}

.hero-home~.industries .industry-card>i,
.hero-home~.why-caixa .why-card>i {
  width: auto;
  height: auto;
  margin: 42px auto 24px;
  background: none;
  font-size: 32px
}

.hero-home~.industries .industry-card h3,
.hero-home~.why-caixa .why-card h3 {
  margin: 0 0 10px;
  font: 700 22px/1.1 "Manrope", sans-serif;
  letter-spacing: -.04em
}

.hero-home~.industries .industry-card p,
.hero-home~.why-caixa .why-card p {
  font-size: 14px;
  line-height: 1.55
}

@media(max-width:600px) {

  .hero-home~.industries .industry-card,
  .hero-home~.why-caixa .why-card {
    min-height: 270px
  }
}

.hero-home~.industries .industry-card,
.hero-home~.why-caixa .why-card {
  min-height: 286px;
  padding: 20px
}

.hero-home~.industries .industry-card>i,
.hero-home~.why-caixa .why-card>i {
  margin: 28px auto 18px
}

@media(max-width:600px) {

  .hero-home~.industries .industry-card,
  .hero-home~.why-caixa .why-card {
    min-height: 0
  }
}

.hero-home~.services .section-head {
  align-items: stretch
}

.service-head-visual {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.service-tech-map {
  position: relative;
  max-width: 620px;
  min-height: 218px;
  margin: 0 0 15px auto;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(14, 135, 146, .12), transparent 19%), linear-gradient(90deg, rgba(14, 135, 146, .08) 1px, transparent 1px), linear-gradient(rgba(14, 135, 146, .08) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px
}

.service-tech-map:before,
.service-tech-map:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #65a94d, transparent);
  transform: translate(-50%, -50%) rotate(27deg)
}

.service-tech-map:after {
  transform: translate(-50%, -50%) rotate(-27deg)
}

.service-map-core,
.service-map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center
}

.service-map-core {
  top: 50%;
  left: 50%;
  width: 104px;
  height: 104px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 12px rgba(14, 135, 146, .1);
  color: #fff
}

.service-map-core i {
  font-size: 27px;
  color: var(--lime)
}

.service-map-core b,
.service-map-core small {
  display: block;
  line-height: 1.05
}

.service-map-core b {
  margin-top: 3px;
  font-size: 13px
}

.service-map-core small {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase
}

.service-map-node {
  width: 76px;
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  box-shadow: 0 8px 17px rgba(16, 37, 55, .07)
}

.service-map-node i {
  font-size: 24px
}

.service-map-node small {
  margin-top: 2px;
  color: var(--ink);
  font: 700 9px/1 "Manrope", sans-serif;
  text-transform: uppercase
}

.node-bank {
  top: 13px;
  left: 13%
}

.node-cloud {
  top: 13px;
  right: 13%;
  color: var(--green)
}

.node-quality {
  bottom: 13px;
  left: 13%;
  color: var(--plum)
}

.node-operations {
  right: 13%;
  bottom: 13px;
  color: var(--gold)
}

.service-head-visual .lead {
  margin: 0
}

@media(max-width:900px) {
  .service-tech-map {
    max-width: 100%;
    margin-top: 10px
  }
}

@media(max-width:600px) {
  .service-tech-map {
    min-height: 178px;
    background-size: auto, 23px 23px, 23px 23px
  }

  .service-tech-map:before,
  .service-tech-map:after {
    width: 200px
  }

  .service-map-core {
    width: 82px;
    height: 82px
  }

  .service-map-core i {
    font-size: 21px
  }

  .service-map-node {
    width: 56px;
    height: 56px
  }

  .service-map-node i {
    font-size: 18px
  }

  .service-map-node small {
    font-size: 7px
  }

  .node-bank,
  .node-quality {
    left: 5%
  }

  .node-cloud,
  .node-operations {
    right: 5%
  }
}

.service-tech-map {
  width: 100%
}

.service-tech-map .service-map-core i,
.service-tech-map .service-map-core b,
.service-tech-map .service-map-core small,
.service-tech-map .service-map-node i,
.service-tech-map .service-map-node small {
  display: none
}

.service-tech-map .service-map-core:after {
  width: 24px;
  height: 24px;
  content: "";
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 14px rgba(184, 217, 96, .12)
}

.service-tech-map .service-map-node:after {
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: currentColor
}

.hero-home~.products .section-head,
.hero-home~.industries .section-head,
.hero-home~.why-caixa .section-head {
  position: relative;
  overflow: hidden
}

.hero-home~.products .section-head:before,
.hero-home~.industries .section-head:before,
.hero-home~.why-caixa .section-head:before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 2%;
  width: 43%;
  height: 100%;
  min-height: 142px;
  content: "";
  opacity: .56;
  background: radial-gradient(circle at 55% 48%, rgba(14, 135, 146, .17) 0 12px, transparent 13px), radial-gradient(circle at 22% 25%, rgba(70, 157, 53, .28) 0 8px, transparent 9px), radial-gradient(circle at 80% 23%, rgba(243, 180, 47, .28) 0 7px, transparent 8px), radial-gradient(circle at 23% 78%, rgba(111, 76, 162, .25) 0 7px, transparent 8px), radial-gradient(circle at 78% 78%, rgba(14, 135, 146, .25) 0 8px, transparent 9px), linear-gradient(28deg, transparent 49.5%, rgba(14, 135, 146, .2) 50% 50.5%, transparent 51%), linear-gradient(-29deg, transparent 49.5%, rgba(70, 157, 53, .2) 50% 50.5%, transparent 51%)
}

.hero-home~.products .section-head>*,
.hero-home~.industries .section-head>*,
.hero-home~.why-caixa .section-head>* {
  position: relative;
  z-index: 1
}

@media(max-width:900px) {

  .hero-home~.products .section-head:before,
  .hero-home~.industries .section-head:before,
  .hero-home~.why-caixa .section-head:before {
    right: 0;
    width: 58%;
    opacity: .34
  }
}

@media(max-width:600px) {

  .hero-home~.products .section-head:before,
  .hero-home~.industries .section-head:before,
  .hero-home~.why-caixa .section-head:before {
    width: 65%;
    min-height: 90px;
    opacity: .25
  }
}

.hero-home~.products .section-head:before {
  background: radial-gradient(circle at 50% 50%, rgba(14, 135, 146, .2) 0 10px, transparent 11px), linear-gradient(45deg, transparent 48%, rgba(14, 135, 146, .28) 49% 51%, transparent 52%), linear-gradient(-45deg, transparent 48%, rgba(70, 157, 53, .25) 49% 51%, transparent 52%), radial-gradient(circle at 24% 24%, rgba(14, 37, 55, .17) 0 31px, transparent 32px), radial-gradient(circle at 77% 25%, rgba(243, 180, 47, .2) 0 31px, transparent 32px), radial-gradient(circle at 24% 77%, rgba(111, 76, 162, .18) 0 31px, transparent 32px), radial-gradient(circle at 77% 76%, rgba(14, 135, 146, .18) 0 31px, transparent 32px)
}

.hero-home~.industries .section-head:before {
  background: repeating-radial-gradient(ellipse at 52% 53%, rgba(14, 135, 146, .16) 0 1px, transparent 2px 23px), linear-gradient(90deg, transparent 49.5%, rgba(70, 157, 53, .25) 50% 50.5%, transparent 51%), linear-gradient(30deg, transparent 49.5%, rgba(14, 135, 146, .25) 50% 50.5%, transparent 51%), linear-gradient(-30deg, transparent 49.5%, rgba(14, 135, 146, .25) 50% 50.5%, transparent 51%)
}

.hero-home~.why-caixa .section-head:before {
  background: radial-gradient(circle at 50% 48%, rgba(70, 157, 53, .22) 0 11px, transparent 12px), radial-gradient(circle at 50% 48%, transparent 0 34px, rgba(70, 157, 53, .2) 35px 37px, transparent 38px 55px, rgba(14, 135, 146, .18) 56px 58px, transparent 59px), linear-gradient(45deg, transparent 49.5%, rgba(14, 37, 55, .16) 50% 50.5%, transparent 51%), linear-gradient(-45deg, transparent 49.5%, rgba(14, 37, 55, .16) 50% 50.5%, transparent 51%)
}

.service-network-art {
  display: block;
  width: min(100%, 680px);
  height: 250px;
  margin: -16px 0 -20px auto;
  object-fit: cover;
  object-position: center 49%;
  mix-blend-mode: multiply;
  filter: saturate(.9) contrast(1.03);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in
}

@media(max-width:900px) {
  .service-network-art {
    width: 100%;
    height: 230px;
    margin: 4px auto -12px
  }
}

@media(max-width:600px) {
  .service-network-art {
    height: 190px;
    margin: 0 auto -8px
  }
}

.hero-home~.intro .intro-trust-art {
  position: absolute;
  z-index: 0;
  top: 38px;
  left: 1.5%;
  display: block;
  width: min(27vw, 365px);
  height: 270px;
  object-fit: cover;
  object-position: center 48%;
  mix-blend-mode: multiply;
  opacity: .86;
  filter: saturate(.82) contrast(1.02);
  mask-image: linear-gradient(to right, transparent 0, #000 16%, #000 84%, transparent 100%), linear-gradient(to bottom, #000 0, #000 72%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 16%, #000 84%, transparent 100%), linear-gradient(to bottom, #000 0, #000 72%, transparent 100%);
  -webkit-mask-composite: source-in;
  pointer-events: none
}

.hero-home~.intro .intro-grid>p,
.hero-home~.intro .intro-grid>div {
  position: relative;
  z-index: 1
}

@media(max-width:900px) {
  .hero-home~.intro .intro-trust-art {
    top: 30px;
    right: 3%;
    left: auto;
    width: 260px;
    height: 195px;
    opacity: .48
  }
}

@media(max-width:600px) {
  .hero-home~.intro .intro-trust-art {
    top: 12px;
    right: -18px;
    width: 190px;
    height: 142px;
    opacity: .28
  }
}

.hero-home~.products .section-head {
  position: relative
}

.hero-home~.products .product-suite-art {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 48%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  mix-blend-mode: multiply;
  opacity: .78;
  filter: saturate(.84) contrast(1.02);
  mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  pointer-events: none
}

.hero-home~.products .section-head>div,
.hero-home~.products .section-head>.lead {
  position: relative;
  z-index: 1
}

@media(max-width:900px) {
  .hero-home~.products .product-suite-art {
    width: 52%;
    opacity: .46
  }
}

@media(max-width:600px) {
  .hero-home~.products .product-suite-art {
    width: 58%;
    opacity: .24
  }
}

.hero-home~.industries .section-head {
  position: relative
}

.hero-home~.industries .section-head:before {
  display: none
}

.hero-home~.industries .industries-network-art {
  position: absolute;
  z-index: 0;
  top: -34px;
  right: 0;
  display: block;
  width: min(54vw, 680px);
  height: 245px;
  object-fit: cover;
  object-position: center 49%;
  mix-blend-mode: multiply;
  opacity: .76;
  filter: saturate(.84) contrast(1.02);
  mask-image: linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  pointer-events: none
}

.hero-home~.industries .section-head>div,
.hero-home~.industries .section-head>.lead {
  position: relative;
  z-index: 1
}

@media(max-width:900px) {
  .hero-home~.industries .industries-network-art {
    top: -8px;
    width: 58vw;
    height: 205px;
    opacity: .45
  }
}

@media(max-width:600px) {
  .hero-home~.industries .industries-network-art {
    width: 70vw;
    height: 200px;
    opacity: .23
  }
}

.hero-home~.section h2 {
  font-size: clamp(32px, 3.6vw, 52px)
}

.hero-home~.products .product-suite-art {
  top: -12px;
  right: 0;
  bottom: auto;
  width: min(56vw, 700px);
  height: 165px;
  object-fit: cover;
  object-position: center 48%
}

@media(max-width:900px) {
  .hero-home~.products .product-suite-art {
    top: -4px;
    width: 60vw;
    height: 145px
  }
}

@media(max-width:600px) {
  .hero-home~.products .product-suite-art {
    top: 0;
    width: 74vw;
    height: 118px
  }
}

.hero-home~.industries .industry-card,
.hero-home~.why-caixa .why-card {
  min-height: 245px;
  padding: 18px
}

.hero-home~.industries .industry-card>i,
.hero-home~.why-caixa .why-card>i {
  margin: 20px auto 14px
}

@media(max-width:600px) {

  .hero-home~.industries .industry-card,
  .hero-home~.why-caixa .why-card {
    min-height: 0
  }
}

.hero-home~.why-caixa .section-head {
  position: relative
}

.hero-home~.why-caixa .section-head:before {
  display: none
}

.hero-home~.why-caixa .caixa-difference-art {
  position: absolute;
  z-index: 0;
  top: -38px;
  right: 0;
  display: block;
  width: min(58vw, 740px);
  height: 220px;
  object-fit: cover;
  object-position: center 48%;
  mix-blend-mode: multiply;
  opacity: .72;
  filter: saturate(.82) contrast(1.02);
  mask-image: linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  pointer-events: none
}

.hero-home~.why-caixa .section-head>div,
.hero-home~.why-caixa .section-head>.lead {
  position: relative;
  z-index: 1
}

@media(max-width:900px) {
  .hero-home~.why-caixa .caixa-difference-art {
    top: -22px;
    width: 62vw;
    height: 190px;
    opacity: .43
  }
}

@media(max-width:600px) {
  .hero-home~.why-caixa .caixa-difference-art {
    top: -8px;
    width: 76vw;
    height: 145px;
    opacity: .22
  }
}

.hero-home {
  min-height: auto
}

.service-network-art {
  --visual-reveal-opacity: 1
}

.intro-trust-art {
  --visual-reveal-opacity: .86
}

.product-suite-art {
  --visual-reveal-opacity: .78
}

.industries-network-art {
  --visual-reveal-opacity: .76
}

.caixa-difference-art {
  --visual-reveal-opacity: .72
}

@media (prefers-reduced-motion:no-preference) {
  .motion-ready .section-head {
    opacity: 1;
    transform: none;
    transition: none
  }

  .motion-ready .section-head>div,
  .motion-ready .section-head>.lead,
  .motion-ready .intro-grid>p,
  .motion-ready .intro-grid>div>h2,
  .motion-ready .clients-panel .eyebrow,
  .motion-ready .clients-panel h3,
  .motion-ready .enterprise-cta-wrap>div:first-child {
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity .72s ease, transform .8s cubic-bezier(.2, .8, .2, 1)
  }

  .motion-ready.in-view .section-head>div,
  .motion-ready.in-view .section-head>.lead,
  .motion-ready.in-view .intro-grid>p,
  .motion-ready.in-view .intro-grid>div>h2,
  .motion-ready.in-view .clients-panel .eyebrow,
  .motion-ready.in-view .clients-panel h3,
  .motion-ready.in-view .enterprise-cta-wrap>div:first-child {
    opacity: 1;
    transform: none
  }

  .motion-ready .service-network-art,
  .motion-ready .intro-trust-art,
  .motion-ready .product-suite-art,
  .motion-ready .industries-network-art,
  .motion-ready .caixa-difference-art {
    opacity: 0;
    transform: translateX(58px);
    transition: opacity .8s ease, transform .9s cubic-bezier(.2, .8, .2, 1)
  }

  .motion-ready.in-view .service-network-art,
  .motion-ready.in-view .intro-trust-art,
  .motion-ready.in-view .product-suite-art,
  .motion-ready.in-view .industries-network-art,
  .motion-ready.in-view .caixa-difference-art {
    opacity: var(--visual-reveal-opacity);
    transform: none
  }

  .motion-ready .numbers>div,
  .motion-ready .industry-card,
  .motion-ready .why-card {
    opacity: 0;
    transform: translateY(60px)
  }

  .motion-ready.in-view .numbers>div,
  .motion-ready.in-view .industry-card,
  .motion-ready.in-view .why-card {
    animation: home-tile-rise .85s cubic-bezier(.2, .8, .2, 1) forwards
  }

  .motion-ready.in-view .numbers>div:nth-child(2),
  .motion-ready.in-view .industry-card:nth-child(2),
  .motion-ready.in-view .why-card:nth-child(2),
  .motion-ready.in-view .service-card:nth-child(2),
  .motion-ready.in-view .product-card:nth-child(2) {
    animation-delay: .12s
  }

  .motion-ready.in-view .numbers>div:nth-child(3),
  .motion-ready.in-view .industry-card:nth-child(3),
  .motion-ready.in-view .why-card:nth-child(3),
  .motion-ready.in-view .service-card:nth-child(3),
  .motion-ready.in-view .product-card:nth-child(3) {
    animation-delay: .24s
  }

  .motion-ready.in-view .industry-card:nth-child(4),
  .motion-ready.in-view .why-card:nth-child(4),
  .motion-ready.in-view .service-card:nth-child(4),
  .motion-ready.in-view .product-card:nth-child(4) {
    animation-delay: .36s
  }

  .motion-ready.in-view .industry-card:nth-child(5),
  .motion-ready.in-view .why-card:nth-child(5),
  .motion-ready.in-view .service-card:nth-child(5) {
    animation-delay: .48s
  }

  .motion-ready.in-view .industry-card:nth-child(6),
  .motion-ready.in-view .why-card:nth-child(6),
  .motion-ready.in-view .service-card:nth-child(6) {
    animation-delay: .6s
  }

  .motion-ready .enterprise-cta-actions {
    opacity: 0;
    transform: translateX(48px);
    transition: opacity .72s ease .15s, transform .8s cubic-bezier(.2, .8, .2, 1)
  }

  .motion-ready.in-view .enterprise-cta-actions {
    opacity: 1;
    transform: none
  }
}

@keyframes home-tile-rise {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media(max-width:900px) {
  .intro-trust-art {
    --visual-reveal-opacity: .48
  }

  .product-suite-art {
    --visual-reveal-opacity: .46
  }

  .industries-network-art {
    --visual-reveal-opacity: .45
  }

  .caixa-difference-art {
    --visual-reveal-opacity: .43
  }
}

@media(max-width:600px) {
  .intro-trust-art {
    --visual-reveal-opacity: .28
  }

  .product-suite-art {
    --visual-reveal-opacity: .24
  }

  .industries-network-art {
    --visual-reveal-opacity: .23
  }

  .caixa-difference-art {
    --visual-reveal-opacity: .22
  }
}

@media (prefers-reduced-motion:no-preference) {

  .motion-ready .service-network-art,
  .motion-ready .intro-trust-art,
  .motion-ready .product-suite-art,
  .motion-ready .industries-network-art,
  .motion-ready .caixa-difference-art {
    opacity: 0 !important
  }

  .motion-ready.in-view .service-network-art,
  .motion-ready.in-view .intro-trust-art,
  .motion-ready.in-view .product-suite-art,
  .motion-ready.in-view .industries-network-art,
  .motion-ready.in-view .caixa-difference-art {
    opacity: var(--visual-reveal-opacity) !important
  }
}

.content-grid>.callout {
  height: auto;
  min-height: 0;
  align-self: stretch;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.site-breadcrumb {
  border-bottom: 1px solid var(--line);
  background: #fff
}

.site-breadcrumb .shell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: var(--muted);
  font: 700 11px/1 "Manrope", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase
}

.site-breadcrumb a {
  color: var(--teal);
  text-decoration: none
}

.site-breadcrumb a:hover {
  color: var(--green)
}

.site-breadcrumb i {
  color: var(--green);
  font-size: 9px
}

.site-breadcrumb span[aria-current="page"] {
  color: var(--ink)
}

@media(max-width:600px) {
  .site-breadcrumb .shell {
    gap: 8px;
    min-height: 38px;
    font-size: 10px
  }
}
