@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/2026new/montserrat-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/2026new/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/2026new/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
 

  /* clean Montserrat rendering, no faux weights */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis-weight: none;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
 
}

strong, b {
  font-weight: 600;
  font-synthesis-weight: none;
}

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


button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------- accessibility ---------- */

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lb-skip {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1100;
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #7c3aed;
  transition: top 0.2s ease;
}
.lb-skip:focus { top: 0; }

:focus-visible {
  outline: 2px solid #a855f7;
  outline-offset: 2px;
  border-radius: 4px;
}

/* scroll lock while the mobile drawer is open */
body.lb-lock {
  overflow: hidden;
}


/* =========================================================
  Header CSS
   ========================================================= */
.lb-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  z-index: 9999;
}

.lb-nav {
  position: relative;              /* anchor for the mega panels */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
}

.lb-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.lb-logo img {
  width: auto;
  height: 44px;
}

/* ---------- menu ---------- */

.lb-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 24px;
}

.lb-menu-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* static so the mega resolves against .lb-nav */
.lb-item { position: static; }
.lb-item.has-drop { position: relative; }

.lb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.lb-link:hover,
.lb-item.is-open > .lb-link { color: #c084fc; }

.lb-caret { transition: transform 0.25s ease; }
.lb-item.is-open > .lb-link .lb-caret { transform: rotate(180deg); }

/* ---------- mega panel ---------- */

.lb-mega {
  position: absolute;
  top: calc(100% - 6px);
  left: 0;
  right: auto;
  width: 810px;
  max-width: calc(100vw - 40px);
  padding: 30px 20px;
  background: #ffffff;
  color: #1a1024;
  border-radius: 13px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.lb-item.is-open > .lb-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lb-mega--sol,
.lb-mega--sm {
  right: 300px;
  width: auto;
  max-width: none;
}

.lb-mega-inner { width: 100%; }

/* invisible strip across the gap, keeps hover alive */
.lb-mega::before,
.lb-drop::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 26px;
}

/* ---------- mega grids ---------- */

.lb-mega-grid { display: grid; gap: 24px; }
.lb-mega-grid--2 { grid-template-columns: 1fr 1fr; }
.lb-mega-grid--sol { grid-template-columns: minmax(230px, 285px) 1fr; }

.lb-mega-grid--2 > .lb-col + .lb-col,
.lb-mega-grid--sol > .lb-col + .lb-col {
  border-left: 1px dashed #d1d1d1;
  padding-left: 24px;
}

.lb-col-title {
  margin: 0 0 12px;
  padding-inline: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #373737;
}

/* ---------- Solutions mega, scoped ---------- */

.lb-mega--sol .lb-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #373737;
}
.lb-mega--sol .lb-txt b { font-weight: 600; }

.lb-col-title--brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  color: #373737;
}

.lb-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 0 auto;
  line-height: 1.25;
  order: 1;
}

.lb-powered {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #6b6868;
}

.lb-brand-logo {
  height: 34px;
  width: auto;
  flex: 0 0 auto;
  order: 2;
}

/* ---------- link rows ---------- */

.lb-links li + li { margin-top: 4px; }

.lb-links a,
.lb-about-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 0.2s ease;
}
.lb-links a:hover,
.lb-about-top:hover { background: #f5f1fa; }

.lb-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 6px;
  background: #f5f2f9;
}
.lb-mega--sol .lb-ico {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  margin-top: 2px;
  background: #F5F2F9;
}
.lb-col--data .lb-ico { background: #F5F2F9; }

.lb-txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.lb-txt b {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #000000;
}
.lb-txt small {
  font-size: 12px;
  font-weight: 400;
  line-height: 126%;
  color: #6b6868;
}

.lb-arrow {
  font-style: normal;
  color: #7c3aed;
  margin-left: 4px;
}

/* ---------- Solutions data pane ----------
   Pane itself is white. Two grey cards sit inside it,
   the second wraps its own nested sub-items.          */

.lb-col--pane {
  padding: 0;
  background: transparent;
}

.lb-links--compact a {
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
/*.lb-links--compact a:hover { background: rgba(255, 255, 255, 0.85); }*/
.lb-links--compact .ib-hov a { background: #f5f1fa; }
.lb-card {
  padding: 6px;
  border-radius: 12px;
/*  background: #f5f5f5;*/
}
.lb-links--compact li + .lb-card { margin-top: 10px; }
/* Enrichment only, matches the Data Intelligence rows */
.lb-mega--sol .lb-plain .lb-ico {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  margin-top: 0;
  border-radius: 6px;
/*  background: #f5f2f9;*/
}

.lb-mega--sol .lb-plain a:hover { background: #f5f1fa; }
.lb-sub {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}
.lb-sub li + li { margin-top: 2px; }
.lb-sub a { padding-left: 34px; }

.lb-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---------- browse band, Data Intelligence footer ---------- */

.lb-browse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 26px -20px -30px;
  padding: 8px 10px;
  border-top: 1px solid #ece5f6;
  border-radius: 0 0 13px 13px;
  background: #fffaec;
}

.lb-browse-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 14px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.lb-browse-item:hover { background: #f5f1fa; }

/*.lb-browse-item + .lb-browse-item {
  border-left: 1px solid #ece5f6;
}
*/
.lb-browse .lb-ico { background: transparent; }

/* ---------- about mega ---------- */

.lb-about-top {
  border-bottom: 1px solid #ece5f6;
  border-radius: 12px 12px 0 0;
  padding-bottom: 18px;
  margin-bottom: 14px;
}
.lb-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.lb-about-grid > ul:first-child {
  border-right: 1px dashed #d1d1d1;
  padding-right: 24px;
}

/* ---------- simple dropdown ---------- */

.lb-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  padding: 10px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.lb-item.is-open > .lb-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.lb-drop a {
  display: block;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1024;
  transition: background 0.18s ease, color 0.18s ease;
}
.lb-drop a:hover {
  background: #f5f1fa;
  color: #7c3aed;
}
/* dropdown with icons */
.lb-drop--icons { min-width: 260px; }

.lb-drop--icons a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lb-drop-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  flex-shrink: 0;
  color: #1c1b1f;
  transition: color 0.18s ease, transform 0.18s ease;
  
}
.lb-drop--icons li + li {
  border-top: 1px dashed #ececec;
}
.lb-drop--icons li + li a {
  border-radius: 0;
}
.lb-drop--icons a:hover .lb-drop-ico { transform: translateX(2px); }
.lb-drop--icons a:hover .lb-drop-ico { color: #7c3aed; }
/* ---------- actions ---------- */

.lb-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lb-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  transition: background 0.2s ease, color 0.2s ease;
}
.lb-search:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #c084fc;
}

.lb-login {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.lb-login:hover { color: #c084fc; }

.lb-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
  white-space: nowrap;
  background: #ffffff;
  transition: background 0.2s ease;
}
.lb-cta:hover { background: #f3edfb; }

.lb-ai {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(0deg, #6d28d9 0%, #8b5cf6 100%);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.lb-ai:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 10px 26px rgba(124, 58, 237, 0.55);
}
.lb-ai svg { transition: transform 0.35s ease; }
.lb-ai:hover svg { transform: rotate(15deg) scale(1.06); }
.lb-ai-wrap { position: relative; }

.lb-ai-pop {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 300px;
  padding: 18px 20px;
  border-radius: 15px;
border: 1px solid #7445F7;
background: rgba(0, 0, 0, 0.70);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.lb-ai-wrap.is-open .lb-ai-pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lb-ai-title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  color: #fff;
}

.lb-ai-icons {
  display: flex;
  gap: 15px;
}

.lb-ai-icons a {
  display: inline-flex;
 
  transition: border-color 0.2s ease, background 0.2s ease;
}
/*.lb-ai-icons a:hover {
  border-color: #6d08be;
  background: #faf7ff;
}*/

.lb-ai-icons img { width: 22px; height: 22px; }
/* ---------- burger, close, overlay ---------- */

.lb-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.lb-burger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.lb-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lb-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lb-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lb-menu-head { display: none; }

.lb-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, color 0.2s ease;
}
.lb-close:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #c084fc;
}

.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lb-overlay.is-visible { opacity: 1; }

/* list reset, Bootstrap does not clear these */
.lb-menu-list,
.lb-links,
.lb-item {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lb-menu-list li,
.lb-links li,
.lb-drop li { list-style: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1399.98px) {
  .lb-nav,
  .lb-menu { gap: 16px; }
  .lb-link { padding: 10px 11px; }

  .lb-mega--sol,
  .lb-mega--sm { right: 230px; }
}

@media (max-width: 1279.98px) {
  .lb-mega { width: 720px; }

  .lb-mega--sol,
  .lb-mega--sm { right: 200px; }
}

@media (max-width: 1199.98px) {
.lb-drop-ico { color: #ffffff; }
.lb-drop--icons a:hover .lb-drop-ico { color: #c084fc; }
  .lb-burger { display: flex; }

  .lb-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 2;
    margin: -20px -20px 8px;
    padding: 16px 20px;
    background: #0d0a17;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .lb-menu-logo img {
    height: 34px;
    width: auto;
  }

  .lb-mega::before,
  .lb-drop::before { display: none; }

  .lb-logo img { height: 38px; }

  .lb-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: min(420px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 20px 20px 40px;
    background: #0d0a17;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .lb-menu.is-open { transform: translateX(0); }

  .lb-menu-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .lb-item { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }

  .lb-link {
    width: 100%;
    justify-content: space-between;
    padding: 16px 4px;
    font-size: 16px;
    border-radius: 0;
  }
  .lb-link:hover,
  .lb-item.is-open > .lb-link { background: transparent; }

  /* mega and dropdown become accordions */
  .lb-mega,
  .lb-drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    width: 100%;
    max-width: none;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .lb-item.is-open > .lb-mega,
  .lb-item.is-open > .lb-drop {
    max-height: 1800px;
    padding-bottom: 12px;
  }

  .lb-mega--sol,
  .lb-mega--sm {
    width: 100%;
    right: auto;
  }

  .lb-mega-inner { width: 100%; }

  .lb-mega-grid,
  .lb-mega-grid--2,
  .lb-mega-grid--sol,
  .lb-two,
  .lb-about-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lb-mega-grid--2 > .lb-col + .lb-col,
  .lb-mega-grid--sol > .lb-col + .lb-col {
    border-left: 0;
    padding-left: 0;
  }

  /* flatten the card treatment in the drawer */
  .lb-col--pane {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 14px 6px;
  }
  .lb-card {
    padding: 0;
    background: transparent;
  }
  .lb-links--compact .lb-card + .lb-card { margin-top: 4px; }
  .lb-sub a { padding-left: 8px; }
  .lb-links--compact a:hover { background: rgba(255, 255, 255, 0.06); }

  .lb-col-title,
  .lb-mega--sol .lb-col-title {
    margin-bottom: 8px;
    padding-inline: 8px;
    color: #a396b3;
  }
  .lb-col-title--brand { color: #ffffff; }
  .lb-powered { color: #a396b3; }
  .lb-brand-logo { height: 24px; }

  .lb-links a,
  .lb-about-top,
  .lb-browse-item { padding: 11px 8px; }
  .lb-links a:hover,
  .lb-about-top:hover,
  .lb-browse-item:hover { background: rgba(255, 255, 255, 0.06); }

  .lb-txt b { color: #ffffff; }
  .lb-txt small { color: #a396b3; }

  .lb-ico,
  .lb-col--data .lb-ico,
  .lb-mega--sol .lb-ico,
  .lb-browse .lb-ico {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.9);
  }

  /* browse band in the drawer */
  .lb-browse {
    grid-template-columns: 1fr;
    margin: 14px 0 0;
    padding: 6px;
    border-top: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
  }
  .lb-browse-item + .lb-browse-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lb-about-top { border-bottom-color: rgba(255, 255, 255, 0.1); }
  .lb-about-grid > ul:first-child {
    border-right: 0;
    padding-right: 0;
  }

  .lb-drop a {
    padding: 12px 8px;
    color: #ffffff;
  }
  .lb-drop a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #c084fc;
  }

  .lb-actions {
    width: 100%;
    margin-top: 26px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .lb-search { border: 1px solid rgba(255, 255, 255, 0.16); }
  .lb-login {
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
  }
  .lb-cta {
    flex: 1;
    min-width: 150px;
  }
}

@media (max-width: 575.98px) {
  .lb-logo img { height: 32px; }

  .lb-menu {
    width: 100%;
    padding: 16px 16px 32px;
  }
  .lb-menu-head {
    margin: -16px -16px 8px;
    padding: 14px 16px;
  }
  .lb-menu-logo img { height: 30px; }

  .lb-actions {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    grid-template-areas:
      "login login login"
      "search cta ai";
    align-items: center;
    gap: 12px;
  }
  .lb-login {
    grid-area: login;
    width: 100%;
    text-align: center;
  }
  .lb-search { grid-area: search; }
  .lb-cta    { grid-area: cta; width: 100%; }
  .lb-ai     { grid-area: ai; }
}

@media (prefers-reduced-motion: reduce) {
  .lb-header,
  .lb-header * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
  Footer CSS
   ========================================================= */
.footer {
  position: relative;
  padding: 70px 0 0;
  background: #000000;
  color: #ffffff;
}

/* ---------- link columns ---------- */

.footer-title {
  position: relative;
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  font-synthesis-weight: none;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
  list-style: none;
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #ffb703; }

.footer-rule {
  margin: 40px 0 34px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 1;
}

/* ---------- address ---------- */

.footer-address {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-logo {
  width: 46px;
  height: auto;
  flex-shrink: 0;
}

.footer-strong {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  font-synthesis-weight: none;
  color: #ffffff;
}

.footer-address p:not(.footer-strong),
.footer-note {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-address a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
  /* display: block;*/
  padding: 10px 0;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
}
.footer-address a:hover { color: #ffb703; }

/* ---------- newsletter ---------- */

.footer-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  padding: 13px 28px;
  border-radius: 10px;
  background: #673ab7;
  font-size: 14px;
  font-weight: 600;
  font-synthesis-weight: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: background 0.25s ease;
}
.footer-subscribe:hover {
  background: #7c3aed;
  color: #ffffff;
}
.footer-follow { margin-top: 4px; }

/* ---------- social ---------- */

.footer-social {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.footer-social a:hover {
  border-color: #ffb703;
  color: #ffb703;
}

/* ---------- badges, one row ---------- */

.footer-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer-badge img {
  width: 54px;
  height: auto;
}

.footer-badge p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.75);
}
.footer-badge p span {
  font-weight: 700;
  font-synthesis-weight: none;
  color: #ffffff;
}

.footer-cert {
  max-width: 190px;
  height: auto;
}

/* ---------- copyright ---------- */

.footer-copyright { padding-bottom: 22px; }

.footer-copyright .footer-rule { margin: 34px 0 20px; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal li {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.75);
  list-style: none;
}

.footer-legal a {
  font-size: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: #ffb703; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {
  .footer-links a { font-size: 12.5px; }
}

/* ---------- accordion columns ---------- */

@media (max-width: 767.98px) {

  .footer { padding-top: 46px; }

  .footer-cols { --bs-gutter-y: 0; }

  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .footer-col:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 16px 2px;
    cursor: pointer;
    user-select: none;
  }

  /* chevron */
  .footer-title::after {
    content: "";
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.3s ease;
  }
  .footer-col.is-open .footer-title::after {
    transform: rotate(225deg) translateY(-2px);
  }

  .footer-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .footer-col.is-open .footer-links {
    max-height: 600px;
    padding-bottom: 14px;
  }

  .footer-links li { margin-bottom: 12px; }
  .footer-links a { font-size: 14px; }

  .footer-rule { margin: 15px 0 26px;border-top:inherit; }

  
  .footer-badges { gap: 16px; }
  .footer-legal { gap: 6px 16px; }
}

@media (max-width: 575.98px) {
   .footer-subscribe { width: 100%; }

  .footer-badge img { width: 46px; }
  .footer-cert { max-width: 150px; }
}

/* =========================================================
  Hero CSS
   ========================================================= */

 /*.bg-hero-image
 {
  background-image:url('../images/hero-banner.webp') ;
      background-repeat: no-repeat;
    background-size: cover;
    background-color: #190053;
 }*/
 .video-banner-main {
    position: relative;
    width: 100%;
    min-height: 100vh; /* full viewport height */
    overflow: hidden;
        z-index: -1;
/*    background-color: #000;*/
    
}

.bg-video-baan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background: #000;

}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
/*  mix-blend-mode: multiply;*/
  background:linear-gradient(110deg, #000 1.28%, rgba(3, 3, 3, 0) 75.78%), linear-gradient(110deg, #030009 31.87%, #190053bf 71.35%);
    opacity: 0.9;
}

.video-banner-main > .container {
  position: relative;
  z-index: 1;
}
 .hero-banner{
  padding: 160px 0 80px 0;
  z-index: 9;
 }

.mid-clr-line {
  display: block;
  height: 1px;
  width: 100%;
  min-width: 200px;
  margin: 10px 0;
  padding: 0;
  border: 0;
  opacity: 1;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 49.04%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* ---------- the marquee ---------- */

.trust-marquee {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: trust-scroll 60s linear infinite;
}

.trust-track img {
  width: auto;
  height: 35px;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.trust-track img:hover { opacity: 1; }

.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.margin-minus-50{
  margin-top: -50px;
  position: relative;
  z-index: 99;
}

.comilance-row {
    display: flex;
    flex-wrap: wrap;
/*    justify-content: space-between;*/
    gap: 5%;
    align-items: center;
}
.max-second{ width: 70px; height: 70px; aspect-ratio: 1 / 1;}
.max-third{width: 70px;height: 70px;}
.max-fourth{height: 45px;}
.max-fifth{height: 50px;}
.max-firs{height: 50px;}

/* =========================================================
   Desktop: two column tabs, Mobile: accordion
   ========================================================= */

.dt {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  column-gap: 40px;
  align-items: start;
  grid-auto-rows: min-content;
  min-height: 520px;
}
.dt-item { display: contents; }

/* ---------- tab button ---------- */

.dt-tab {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 25px 5px;
  border: 0;
  border-bottom: 1px dashed #8e96a0;
  background: none;
  text-align: left;
  cursor: pointer;
  color: #000000;
  transition: color 0.2s ease;
}
.dt-item:last-child .dt-tab { border-bottom: 0; }

.dt-tab-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  flex-shrink: 0;
}

.dt-tab-text {
  font-size: 20px;
  font-weight: 400;
  font-synthesis-weight: none;
  line-height: 140%;
}

.dt-chevron { display: none; }

.dt-tab:hover,
.dt-tab.is-active { color: #4e39ef; }

.dt-tab.is-active .dt-tab-text {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.dt-tab:focus-visible {
  outline: 2px solid #a855f7;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- panes ----------*/

.dt-pane {
  position: absolute;
  top: 0;
  left: 360px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.dt-pane.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ---------- card ---------- */

.dt-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 50px;
  border: 1px solid #ffffff;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 18.9px 0 rgba(0, 0, 0, 0.05);
}

.dt-card-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .dt-pane { transition: none; }
  .dt-pane.is-active { animation: none; }
 
}
/* ---------- Hover Card ---------- */

.img-display {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1fr 1fr;   
  gap: 10px;
  width: 100%;
  transition: grid-template-columns 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.img-display:has(.profile-pic:nth-child(1):hover) { grid-template-columns: 2.2fr 1fr 1fr 1fr; }
.img-display:has(.profile-pic:nth-child(2):hover) { grid-template-columns: 1fr 2.2fr 1fr 1fr; }
.img-display:has(.profile-pic:nth-child(3):hover) { grid-template-columns: 1fr 1fr 2.2fr 1fr; }
.img-display:has(.profile-pic:nth-child(4):hover) { grid-template-columns: 1fr 1fr 1fr 2.2fr; }

/* ---------- panel ---------- */

.profile-pic {
  position: relative;
  min-width: 0;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transform: scale(1.06);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.img-display:not(:hover) .active-business img,
.profile-pic:hover img { transform: scale(1); }

.profile-pic::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}
.real-business-cnt {
  position: absolute;
  z-index: 1;
  left: 5%;
  right: 5%;
  bottom: 5%;
  padding: 20px;
}
.real-business-arrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.real-business-arrow a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.real-business-arrow a span {
  font-size: 12px;
  font-weight: 600;
  font-synthesis-weight: none;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff;
}
.img-display:not(:hover) .active-business .real-business-arrow a,
.profile-pic:hover .real-business-arrow a { opacity: 1; transform: translateY(0);}
.real-business-arrow a:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; border-radius: 4px;}

@media (hover: none) {
  .real-business-arrow a { opacity: 1; transform: translateY(0);}
  .profile-pic img { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .img-display,
  .profile-pic img,
  .real-business-arrow a { transition: none; }
  .profile-pic img { transform: scale(1); }
}

/* ---------- Multi Tab ---------- */

.multichannel-tab-titles {
    position: relative;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between
}

.multichannel-tab-titles::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #A591A5
}

.multichannel-tab-item {
    padding: 15px 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #A591A5;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    transition: all 0.3s ease
}

.multichannel-tab-item svg {
    margin-right: 5px
}
.ta-right-sub-cnt .first-bx,.ta-right-sub-cnt .second-bx,.ta-right-sub-cnt .third-bx .third-bx-cnt {
    transition: transform 0.3s ease,box-shadow 0.3s ease
}
.multichannel-tab-item.active {
    border-bottom: 2px solid darkgray;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    transition: opacity 0.3s ease
}
.multichannel-tab-content {
    display: none;
    margin-top: 40px
}
.multichannel-tab-content.active-content {
    display: block
}
.ta-right-img {
    height: 100%
}

.ta-right-sub-cnt .first-bx {
    border-radius: 25px;
    background: linear-gradient(76deg,#930F72 30.1%,#850A90 92.17%);
    box-shadow: 0 -21px 9.4px 4px rgba(0,0,0,.04);
    padding: 35px 25px;
    margin-bottom: 10px
}
.ta-right-sub-cnt .first-bx a {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.ta-right-sub-cnt .second-bx {
    border-radius: 25px;
    background: #D1A0C8;
    box-shadow: 0 -21px 9.4px 4px rgba(0,0,0,.04);
    padding: 30px 20px;
    margin-bottom: 10px
}
.ta-right-sub-cnt .second-bx h3 {
    color: #750060;
    
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%
}
.ta-right-sub-cnt .second-bx h3 span {
    color: #750060;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}
.ta-right-sub-cnt .third-bx {
    display: flex;
    justify-content: space-around;
    gap: 10px
}
.ta-right-sub-cnt .third-bx .third-bx-cnt {
    border-radius: 25px;
    background: #B6BBE5;
    box-shadow: 0 -21px 9.4px 4px rgba(0,0,0,.04);
    padding: 25px 30px;
    flex: 1
}
.ta-right-sub-cnt .third-bx .third-bx-cnt h3 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%
}

.ta-right-sub-cnt .third-bx .third-bx-cnt p {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0
}

.ta-right-sub-cnt .third-bx .third-bx-img {
    display: flex
}

.ta-right-sub-cnt .third-bx .third-bx-img img {
    max-width: 150px
}
/* =========================================================
   Success Stories accordion
   ========================================================= */

.success-item {
margin-bottom: 14px;
border-radius: 15px;
background: #ffffff;
box-shadow: 0 10px 18.9px 0 rgba(0, 0, 0, 0.05);
overflow: hidden;
}
.success-item:last-child { margin-bottom: 0; }

/* ---------- head, two halves ---------- */

.success-head {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 24px;
width: 100%;
padding: 24px 40px;
border: 0;
background: none;
text-align: left;
cursor: pointer;
color: #000000;
}

.success-item.is-open .success-head {
border-bottom: 1px solid #d1e0ef;
}

.success-head:focus-visible {
outline: 2px solid #6d08be;
outline-offset: -2px;
}

.success-head-left {
display: flex;
align-items: center;
min-width: 0;
}

.success-head-right {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 16px;
min-width: 0;
}
.success-stats-list {
margin: 0 0 24px;
padding: 0 0 0 20px;
list-style: disc;
}
.success-stats-list li {
margin-bottom: 15px;
font-size: 16px;
font-weight: 400;
font-synthesis-weight: none;
line-height: 140%;
color: #000000;
}
.success-stats-list strong { font-weight: 700; }

.success-tag {
display: inline-flex;
align-items: center;
flex-shrink: 0;
padding: 5px 16px;
border-radius: 20px;
background: #f9f0f0;
font-size: 12px;
font-weight: 500;
line-height: 150%;
white-space: nowrap;
color: #180023;
}

.success-title {
font-size: 18px;
font-weight: 600;
font-synthesis-weight: none;
line-height: 150%;
color: #000000;
}

/* chevron, mobile only */
.success-chevron { display: none; }

/* ---------- body ---------- */

.success-body {
max-height: 0;
overflow: hidden;
transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.success-item.is-open .success-body { max-height: 900px; }

.success-inner { padding: 30px 40px 40px; }

.success-stats {
display: flex;
flex-wrap: wrap;
gap: 10px 60px;
margin-bottom: 22px;
}
.success-stats p {
margin: 0;
max-width: 220px;
font-size: 16px;
font-weight: 500;
font-synthesis-weight: none;
line-height: 135%;
color: #000000;
}

.success-desc {
max-width: 480px;
margin: 0 0 24px;
font-size: 16px;
font-weight: 500;
font-synthesis-weight: none;
line-height: 135%;
color: #000000;
}

.success-link {
font-size: 12px;
font-weight: 700;
font-synthesis-weight: none;
text-transform: uppercase;
color: #6d08be;
}
.success-link:hover { color: #6d08be; }

@media (prefers-reduced-motion: reduce) {
.success-body,
.success-chevron { transition: none; }
}

/* ===== Testimonial slider ===== */

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
  padding: 60px;
  border-radius: 15px;
  background: #f3e7ff;

}

.testimonial-logo {
  width: 90px;
  height: auto;
  margin-bottom:25px;
}
.testimonial-body {
  position: relative;
  
}
/* ===== Testimonial slider ===== */

.testimonial-shell {
  border: 1px solid #d1e0ef;
  background: #ffffff;
}

.testimonial-body {
  position: relative;
  padding-right: 20px;
}

/* watermark quote mark behind the copy */
.testimonial-quote {
  position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: auto;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.testimonial-body > *:not(.testimonial-quote) {
  position: relative;
  z-index: 1;
}

.testimonial-logo {
  width: 90px;
  height: auto;
  margin-bottom: 26px;
}

.testimonial-visual {
  display: block;
  height: auto;
  border-radius: 12px;
}

/* ---------- pagination ---------- */

.testimonial-slider { padding-bottom: 60px; }

.testimonial-slider .swiper-pagination {
  text-align: left;
  bottom: 0;
  right: auto;
  bottom: 10px;
  width: 100%;
  transform: none;
}

.testimonial-slider .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin-right: 6px;
  background: #d9d9d9;
  opacity: 1;
  transition: background 0.25s ease;
}
.testimonial-slider .swiper-pagination-bullet-active { background: #6d08be; }

/* ---------- responsive ---------- */



.testimonial-quote-mark {
  display: block;
  margin-bottom: 6px;
  font-size: 60px;
  font-weight: 700;
  line-height: 0.6;
  color: #d7c9e6;
}
.testimonial-slider { padding-bottom: 60px; }

.testimonial-slider .swiper-pagination {
  text-align: left;
  left: -8px;        /* offsets the new 8px inset so dots stay flush left */
  right: auto;
  bottom: 0;
  width: 100%;
  transform: none;
}

.testimonial-slider .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  margin: 0 4px;     /* 8px gap between neighbouring targets */
  background: transparent;
  opacity: 1;
  border-radius: 0;
  position: relative;
}

.testimonial-slider .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d9d9d9;
  transition: background 0.25s ease;
}

.testimonial-slider .swiper-pagination-bullet-active::after {
  background: #6d08be;
}
.max-width-500{
  max-width: 250px;
}

.bg-cta{
  background: url('../../images/2026new/final-cta.webp');
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-svg {
    border-radius: 10px;
    background: #FFF;
    padding: 10px;
}



/**********************/
/* Full screen search */
/**********************/

aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: none;
}

aside.open {
    display: block;
    opacity: 1;
    visibility: visible;
}

.search-box-home {
    text-align: center;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.close-search-btn {
    position: fixed;
    top: 5.5rem;
    right: 8.75rem;
    color: #fff;
    z-index: 99999;
    cursor: pointer;
    font-family: sans-serif;
}

.close-search-btn span,
.close-search-btn span:before,
.close-search-btn span:after {
    border-radius: 0.25rem;
    height: 0.125rem;
    width: 2.188rem;
    background: #fff;
    position: absolute;
    display: block;
    content: "";
}

.close-search-btn span {
    background: transparent;
}

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

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

.outer-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 5.313rem;
    height: 5.313rem;
    cursor: pointer;
    z-index: 99999;
}

.search-box {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
}

.search-controls {
    width: 40%;
    margin: 0 auto;
    text-align: left;
}

.search-controls .search {
    color: #fff;
    width: 100%;
    padding: 0.938rem 0;
    background: transparent;
    border: 0;
    border-bottom: 0.063rem solid rgba(255, 255, 255, 0.3);
}

.search::-webkit-input-placeholder {
    color: #ffffff;
    opacity: 9;
}

.search::-moz-placeholder {
    color: #ffffff;
    opacity: 9;
}

.search:-ms-input-placeholder {
    color: #ffffff;
    opacity: 9;
}

.counting-wid{
    width: 190px;
    flex-shrink: 0;
}

.coming-soon {
    color: #dc3545;
    font-weight: 600;
}