:root {
  --PrimaryColor: #00408E;
  --SecondaryColor: #6FA8DC;
  --BlackColor: #000;
  --BgColor: #F5F7FA;
  --WhiteColor: #FFFFFF;
  --text: #0B1F33;
  --muted: #6B7A90;
  --border: #E2E8F0;
  --accent: #2F80ED;
  --dark-blue: #0F3D91;
  --soft-blue: #E6F0FB;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--BgColor);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  transition: all .2s ease;
}

/* ── Typography ──────────────────────────────── */
h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.15;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
}

h3 {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.3;
}

p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

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

.caption {
  font-size: 0.8125rem;
  color: var(--muted);
}

.same-heading h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
  color: #071E27;
  position: relative;
}
.same-heading h3 {
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.3;
  color: #071E27;

}

.same-heading p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
}


.border-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 4rem;
  height: 0.25rem;
  border-radius: 3.125rem;
  background-color: var(--PrimaryColor);
}

.same-heading {
  margin-bottom: 4rem;
}

/* ── Navbar ──────────────────────────────────── */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .nav-logo {
  height: 2.25rem;
  width: auto;
}

.header .navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--PrimaryColor);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
}

.header .navbar-brand span {
  color: var(--text);
}

.header .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.375rem 0.875rem;
  transition: color 0.2s;
  text-decoration: none;
}

.header .nav-link:hover,
.header .nav-link.active {
  color: var(--PrimaryColor);
}

.header .navbar-toggler {
  background: var(--PrimaryColor);
  border: 1px solid var(--PrimaryColor);
  color: var(--WhiteColor);
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}


.header .toggler-icon {
  color: var(--WhiteColor);
}

.header .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;

}


/* ── Sidebar Navigation ────────────────────────── */
.header .nav-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
}
.header .search-with-login{display: inline-flex; gap: 0.6rem; align-items: center;}
.header .search-icon{color: var(--text); }


/* ── Buttons ─────────────────────────────────── */
.btn {
  border-radius: 0.625rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--PrimaryColor);
  color: var(--WhiteColor);
  border: solid 1px var(--PrimaryColor);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: var(--WhiteColor) !important;
  color: var(--PrimaryColor) !important;
  border-color: var(--PrimaryColor) !important;

}

.btn-outline-primary {
  background: var(--WhiteColor);
  color: var(--PrimaryColor);
  border: solid 1px var(--PrimaryColor);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background: var(--PrimaryColor) !important;
  color: var(--WhiteColor) !important;
  border-color: var(--WhiteColor) !important;

}



.btn-secondary {
  background: #A7C8FE;
  color: var(--PrimaryColor);
  border: solid 1px #A7C8FE;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background: var(--PrimaryColor) !important ;
  color: var(--WhiteColor) !important;
  border-color: var(--PrimaryColor) !important;

}


.btn-outline-dark-custom {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 0.625rem;
  padding: 0.6875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-dark-custom:hover {
  background: var(--BgColor);
  transform: translateY(-1px);
}

/* ── Cards ───────────────────────────────────── */
.card-base {
  background: var(--WhiteColor);
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.card-base:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.875rem 2.25rem rgba(0, 0, 0, 0.1);
}

.card-dark {
  background: var(--dark-blue);
  color: #fff;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.card-teal {
  background: #E6F5F5;
}


.icon-wrap-blue {
  background: var(--soft-blue);
  color: var(--PrimaryColor);
}

.icon-wrap-dark {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.icon-wrap-teal {
  background: #C2EBE8;
  color: #1A7A75;
}

.icon-wrap-green {
  background: #A2EEFF;
  color: #1A7A55;
}

/* ── Section Spacing ─────────────────────────── */
.same-section {
  padding: 5rem 0;
}



/* ── Hero ────────────────────────────────────── */
.hero {
  background: #82c6f5 url(../images/banner-img.png)no-repeat right center;
  padding: 6.25rem 0;
  overflow: hidden;
  position: relative;
  background-size: 75%;
}




.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #A2EEFF;
  color: #001F25;
  border: 1.5px solid #A2EEFF;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 1.25rem;
  padding: 0.3125rem 0.875rem;
  margin-bottom: 1.375rem;
}


.hero h1 {
  color: #071E27;
  font-weight: 700;    font-size: 3rem;
  line-height: normal;
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  color: var(--PrimaryColor);
}

.hero p {
  font-size: 1.0625rem;
  color: #424753;
  max-width: 30rem;
  margin-bottom: 2rem;
}

.section-bottom-btn {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero .hero-download {
  font-size: 1rem;
  font-weight: 500;
  color: #424753;
  margin-top: 2rem;
  display: block;
}

.hero .hero-download:hover {
  color: var(--PrimaryColor);
}

.hero .hero-img-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 2rem;
}

.hero .hero-img-wrap img {
  width: 100%;
  max-width: 30rem;
  object-fit: contain;
  filter: drop-shadow(0 1.5rem 3rem rgba(30, 90, 168, 0.25));
}



/* ── Trust Bar ───────────────────────────────── */
.trust-bar {
  background: #e6f6ff70;
  border-top: 1px solid #c2c6d554;
  border-bottom: 1px solid #c2c6d554;
  padding: 2rem 0;
}

.trust-bar .label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #424753;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
}

.trust-bar .tagline {
  font-size: 0.9rem;
  font-weight: 500;
  color: #071E27;
}

/* ── What You Can Do (Figma Layout) ───────────── */
.features-custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 17.5rem;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--WhiteColor);
  border-radius: 1.5rem;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card .f-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature-card .f-card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.feature-card .f-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #071E27;
  margin-bottom: 0.7rem;
}

.feature-card .f-card-text {
  font-size: 0.875rem;
  color: #424753;
  line-height: 1.6;
  margin: 0;
}

/* Card variants by position */
.f-card-reg {
  grid-column: span 2;

}

.f-card-glo {
  grid-column: span 1;
  background: #D5ECF8;
}

.f-card-ver {
  grid-row: span 2;
  background: var(--PrimaryColor);
  /* Matches --PrimaryColor */
  color: var(--WhiteColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 2.25rem;
}

.f-card-ver .f-card-title {
  color: var(--WhiteColor);

}

.f-card-ver .f-card-text {
  color: #DBEAFE;
}

.f-card-pri {
  grid-column: span 1;
  background: #A2EEFF;
}

.f-card-gov {
  grid-column: span 2;
  background: #E9F7FF;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2.25rem;
}

.f-card-gov .f-card-img-wrap {
  flex-basis: 35%;
  flex-shrink: 0;
}

.f-card-gov .f-card-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.f-card-gov .f-card-content {
  flex: 1;
}






/* ── How It Works ────────────────────────────── */
.how-section {
  background: #E6F6FF;
  padding: 5rem 0;
}

.how-section .how-steps-grid {
  position: relative;
}

.how-section .how-steps-grid::before {
  content: "";
  position: absolute;
  top: 4.8rem;
  left: 5rem;
  right: 5rem;
  height: 1px;
  background: #C2DCEB;
  z-index: 1;
}

.how-section .how-step-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.how-section .how-step-box {
  width: 4rem;
  height: 4rem;
  background: var(--WhiteColor);
  color: var(--PrimaryColor);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
}

.how-section .how-step-active .how-step-box {
  background: var(--PrimaryColor);
  color: var(--WhiteColor);
}

.how-section .how-step-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #071E27;
  margin-bottom: 0.75rem;
}

.how-section .how-step-item p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #424753;
  line-height: 1.6;
  max-width: 15rem;
  margin: 0 auto;
}










/* ── Action Cards ────────────────────────────── */
.action-section {
  background: var(--WhiteColor);
}

.action-section .action-card {
  background: #F3FAFF;
  border-radius: 1rem;
  border: 1px solid #c2c6d52b;
  /* box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06); */
  padding: 2rem 1.75rem;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.action-section .action-card .icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.action-section .action-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #071E27;
  margin-bottom: 0.7rem;
}

.action-section .action-card p {
  font-size: 0.875rem;
  color: #424753;
  line-height: 1.6;
  width: 100%;
  max-width: 80%;
  min-height: 100px;
  margin: 0.5rem 0 1rem;
}


.action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.875rem 2.25rem rgba(0, 0, 0, 0.1);
}


.action-section .action-card .btn-slate {
  background: #3E5F8F;
  color: #fff;
}

.action-section .action-card .btn-slate:hover {
  background: #3E5F8F;
  color: #fff;
}

.action-section .action-card .btn-forest {
  background: #004A55;
  color: #fff;
}

.action-section .action-card .btn-forest:hover {
  background: #004A55;
  color: #fff;
}



/* ── Mobile App ──────────────────────────────── */
.app-section {
  background: #D5ECF8;
}

.app-section .app-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;

}

.app-section .app-feature-list li {
  width: 48%;
}

.app-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

.app-section .app-feature-list .app-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #071E27;
  font-weight: 500;
}

.app-section .app-feature-list .iconBx {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--WhiteColor);
  color: var(--PrimaryColor);
  flex-shrink: 0;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #000;
  color: #fff;
  border-radius: 12px;
  padding: 0.8rem 1.125rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.store-btn:hover {
  background: #1a2e44;
  color: #fff;
  transform: translateY(-1px);
}

.store-btn .store-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn .store-sub {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.75;
  text-transform: uppercase;
}

/* ── Why Section ─────────────────────────────── */

.why-inner {
  background: var(--PrimaryColor);
  padding: 3rem;
  border-radius: 1rem;
  margin: 0 15px;
}

.same-heading.white-text :is(h2, p) {
  color: var(--WhiteColor);
}

.same-heading.white-text p {
  opacity: 0.8;
}

.why-inner .feature-list li {
  color: var(--WhiteColor);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 0;
}

.why-inner .feature-list li svg {
  color: #A2EEFF;
  margin-right: 0.5rem;
  width: 1.3rem;
  height: 1.3rem;
}

.why-inner .why-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1rem;
}

.why-inner .why-card h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-inner .why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  margin: 0;
}

.why-inner .why-card .card-icon {
  width: 2.5rem;
  height: 2rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}




/* ── Footer ──────────────────────────────────── */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);

}

.footer .footer-top {
  padding: 3.75rem 0 2rem;
}

.footer .footer-logo {
  display: block;
  margin-bottom: 1rem;
}


.footer .footer-desc {
  font-size: 0.8125rem;
  color: #64748B;
  max-width: 13.75rem;
  line-height: 1.6;
}

.footer .footer-heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer .footer-link {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.625rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--PrimaryColor);
}

.footer .footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  text-align: center;
}

.footer .footer-copy {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ── Card icon images ────────────────────────── */
.card-icon-img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}


/* ── Utility ─────────────────────────────────── */
.section-light-blue {
  background: #F3FAFF;
}

.section-divider {
  width: 3rem;
  height: 0.25rem;
  background: var(--PrimaryColor);
  border-radius: 0.25rem;
  margin-bottom: 3rem;
}

.section-subtitle {
  max-width: 32.5rem;
  margin: 0 auto;
  font-size: 1rem;
}

.text-primary-custom {
  color: var(--PrimaryColor);
}

/* ── Icon sizes (Lucide SVG targets) ─────────── */
.icon-xs {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: var(--PrimaryColor);
}

.icon-sm {
  width: 1.375rem;
  height: 1.375rem;
}

.icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-check {
  width: 0.75rem;
  height: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ── Feature card variants ───────────────────── */
.card-soft-blue {
  background: var(--soft-blue);
}

.card-title {
  font-size: 1.125rem;
}

.card-title-dark {
  font-size: 1.25rem;
  color: #fff;
}

.card-text {
  font-size: 0.875rem;
  margin: 0;
}

.icon-wrap-purple {
  background: #a7c8fe3b;
  color: #6B48C8;
  margin-bottom: 0.75rem;
}

/* ── Dark card button variant ────────────────── */
.btn-secondary-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
}




/* ── Why section ─────────────────────────────── */
.why-desc {
  font-size: 0.9375rem;
  margin-bottom: 1.75rem;
}

/* :is(.layer-bg, .inner-banner) {position: relative;    background: #E6F6FF;} */

/* :is(.layer-bg, .inner-banner)::before {content: ""; position: absolute; inset: 0;background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAZSURBVHgBxcghAQAAAIMw+pf+C+CZHLilebfsBfsvTewEAAAAAElFTkSuQmCC');
    background-repeat: repeat; opacity: .04; pointer-events: none;} */

.inner-banner {
    padding: clamp(5rem, 7vw, 5rem) 0;    background: #D5ECF8;
} 

.inner-banner h1{   font-size: 3rem;
    font-weight: 900;
    line-height: 1.25;
    color: #071E27;}


/* Wrapper */
.dw-cookie-wrapper {
   position: fixed;
    box-sizing: border-box;
    z-index: 2147483647;
    background-color: #fff;
    opacity: 1;
    display: block;
    transform: translateY(0px);
    bottom: 0px;
    right: 0px;
    max-width: 320px;
    width: calc(100% - 20px);    
    box-shadow: 0 -0.3125rem 1.25rem rgba(0,0,0,0.1);
    transition: opacity 0.3s, transform, top, left, right, bottom, max-width, width;
    margin: 1rem;
    border-radius: 10px;
    padding: 2rem;



}

/* Inner layout */
.dw-cookie-card {
    max-width: 75rem; /* 1200px */
    margin: auto;
    display: flex; 
    align-items: center;
   flex-direction: column;
    gap: 1rem; 
}

/* Text */
.dw-cookie-text h4 {
  font-size: 1.2rem;
    color: var(--BlackColor);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dw-cookie-text p {
      color: #555555;
    font-size: 0.9rem; line-height:1.6 ;
    margin-bottom: 0.5rem;
}

.dw-cookie-text a {
    color: var(--PrimaryColor);
    font-weight: 500;
    text-decoration: none;
}

.dw-cookie-wrapper .dw-cookie-actions .btn{    font-size: 0.9rem;}
/* Buttons */
.dw-cookie-actions {
display: flex;
    gap: 0.75rem;
    flex-direction: column;
    width: 100%;
}


.static-pages-outer .same-heading h2{    font-size: 2rem;}
.static-pages-outer .same-heading h3{    font-size: 1.4rem;}
.legal-highlight {
  background: #f5f9ff;
  padding: 1.2rem;
  border-left: 4px solid var(--PrimaryColor);
  margin: 1rem 0 1.5rem;
}
.legal-highlight p{margin-bottom: 0;}

.static-pages-outer .dot-listing{margin: 1rem 0 1rem 1rem;}
.static-pages-outer .dot-listing li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 400;
    font-size: 0.9rem;
        color: var(--muted);
    line-height: 1.6;
}







.search-banner .input-group { border: solid 1px #DBDBDB; border-radius: 0.625rem; padding: 0.2rem; width: 100%; max-width: 50rem; /* was 80rem */ margin: 2.5rem auto 0; background-color: var(--WhiteColor); }
.search-banner .input-group .form-select { border: 0; height: 3rem; /* was 3rem */ font-size: 0.9rem;  color: var(--BlackColor); font-weight: 600; text-transform: uppercase; width: 100%; max-width: 12.5rem; /* was 20rem */ margin-right: 0.625rem;  background-color: var(--WhiteColor); padding: 0.625rem 0.625rem 0.625rem 0.75rem; /* was 1rem 1rem 1rem 1.2rem */ }
.search-banner .input-group input.form-control { background: #fff; border: 0; color: var(--BlackColor); font-size: 1rem; /* was 1.3rem */ font-weight: 500; padding: 0.3125rem 0.3125rem 0.3125rem 1.25rem; /* was 0.5rem 0.5rem 0.5rem 2rem */ height: 3rem; /* was 3rem */ border-left: solid 0.0625rem #DCDCDC; } 
.search-banner .input-group input.form-control::placeholder { color: #999999; } 
.search-banner .input-group .btn-search { color: var(--BlackColor); padding: 0.3125rem 0.625rem; /* was 0.5rem 1rem */ font-size: 1.0625rem; /* was 1.7rem */ border: 0; } 
.search-banner .input-group .btn-search:hover { transform: translateY(0); }
.search-banner .input-group .btn-search:focus { outline: none !important; box-shadow: none !important; }
.search-banner select:focus,
.search-banner input:focus { outline: none !important; box-shadow: none !important; }
.searchListWrapper { padding-top: 0; min-height: 50vh; position: relative;
    overflow: hidden;}

.searchListWrapper .searchtopBx { padding: 1.25rem 0; } /* was 2rem */
.searchListWrapper .searchtopBx .resultsBx { font-size: 0.9rem; font-weight: 600; color: var(--BlackColor); } /* was 1.3rem */
.searchListWrapper .searchtopBx :is(.filterDatebx, .filter-GridList) { display: flex; align-items: center; gap: 0.625rem; } 
.searchListWrapper .searchtopBx .filterDatebx { justify-content: end; max-width: max-content; width: 100%; margin: 0 0.625rem; } 
.searchListWrapper .searchtopBx .filterDatebx h4 { font-size: 0.9rem; /* was 1.3rem */ color: #7D7D7D; font-weight: 500; margin-bottom: 0; white-space: pre; }
.searchListWrapper .searchtopBx .filterDatebx .form-select { width: 100%; max-width: 14.4375rem; /* was 23.1rem */ border: solid 0.0625rem #DBDBDB; height: 2.8125rem;  border-radius: 0.25rem; /* was 0.4rem */ font-size: 0.9rem; /* was 1.3rem */ font-weight: 500; color: #000; margin-left: 0.3125rem; /* was 0.5rem */ } 
.searchListWrapper .searchtopBx .filter-GridList :is(.list-view-button, .grid-view-button) { font-size: 1.0625rem; /* was 1.7rem */ border: solid 1px #DBDBDB; width: 2.875rem; /* was 4.6rem */ height: 2.875rem; /* was 4.6rem */ border-radius: 50%; color: #7D7D7D; padding: 0; cursor: pointer; line-height: normal; display: inline-flex; align-items: center; justify-content: center; }
.searchListWrapper .searchtopBx .filter-GridList :is(.list-view-button, .grid-view-button) svg { width: 1.25rem; } /* was 2rem */ 
.searchListWrapper .searchtopBx .sortListBx { text-align: end; display: flex; align-items: center; justify-content: end; flex-wrap: wrap; }
.searchListWrapper .card { border: solid 0.0625rem #DBDBDB; border-radius: 0.625rem;  padding: 0 0.625rem;  margin-bottom: 1.875rem; /* was 3rem */ }
.searchListWrapper .card .cardTitleWithImg { display: flex; align-items: center; padding: 0.625rem 0; /* was 1rem 0 */ border-bottom: solid 0.0625rem #E7E7E7; }
.searchListWrapper .card .cardTitleWithImg .imgBx { border: 0.0625rem solid #cccccc; border-radius: 0.5rem; /* was 0.8rem */ width: 100%; max-width: 3.75rem; /* was 6rem */ height: 3.75rem; /* was 6rem */ text-align: center; background: var(--WhiteColor); padding: 0.25rem; /* was 0.4rem */ } .searchListWrapper .card .cardTitleWithImg .imgBx img { width: 100%; height: 100%; object-fit: contain; } .searchListWrapper .card .cardTitleWithImg .titleBx { font-size: 0.9375rem; /* was 1.5rem */ color: var(--BlackColor); font-weight: 600; width: calc(100% - 3.75rem); /* was calc(100% - 6rem) */ padding-left: 0.625rem;  }
.searchListWrapper .card :is(.cardbottomContent, .cardMiddleContent) { padding: 0.625rem 0; } /* was 1rem 0 */
.searchListWrapper .card .listBx .titleBx { font-size: 0.875rem; /* was 1.4rem */ line-height: 1.6; ; font-weight: 400; } 
.searchListWrapper .card .cardbottomContent .listBx .titleBx { color: #4c4f50; }
.searchListWrapper .card .reputationscorebx .titleBx { font-size: 0.875rem; /* was 1.4rem */ line-height: 1.6; color: var(--PrimaryColor); font-weight: 400; flex-basis: 0; flex-grow: 1; max-width: 100%; }
.searchListWrapper .card .cardMiddleContent .listBx li { padding: 0.3125rem 0; }
.searchListWrapper .card .listBx .detailBx { font-size: 0.9375rem; /* was 1.5rem */ line-height: 1.6; color: #52525b; font-weight: 600; line-height: normal; }
.searchListWrapper .card .listBx .detailBx a { color: var(--BlackColor); } 
.searchListWrapper .card .listBx .detailBx a:hover { color: var(--PrimaryColor); } /* .searchListWrapper .card .cardbottomContent { border-top: 0.1rem solid #cccccc; } */ 
.searchListWrapper .card .assetsNolist {display: flex; flex-wrap: wrap; margin: 0 -0.5rem; }
.searchListWrapper .card .assetsNolist li { width: 33.33%; padding: 0 0.3125rem; } /* was 0 0.5rem */
.searchListWrapper .card .assetsNolist .assetsBx { background: #DDDDDD;
    padding: 0.9rem 0.4rem;
    width: 100%;
    border-radius: 0.9rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; } 

.searchListWrapper .card .assetsNolist .detailBx { font-size: 1rem; } /* was 1.9rem */
.searchListWrapper .reputationscorebx { margin-top: 1rem; }

.searchListWrapper .slider-container {
  --label: 2.75rem;
  --width: 100%;
  --thumb: clamp(3rem, calc(2.28rem + 3.18vw), 3.88rem);
  inline-size: var(--width);
  aspect-ratio: 10.665 / 1;
  position: relative;
  margin: 0.5rem 0;
}
.searchListWrapper .slider-container .number--label {
  position: relative;
  bottom: 0;
  left: 0;
  font-size: 1rem; /* 16px - 3px */
  color: #000000;
  font-weight: 600;
  text-align: left;
  margin-top: 1rem;
  width: 100%;
}
.searchListWrapper .slider-container .input-slider {
  place-self: center;
  border-radius: 100vh;
  width: 100%;
  height: 0.5rem;
  background: linear-gradient(to right, #BD281B, #DEA038, #959136, #275301);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.searchListWrapper .slider-container .input-slider::-webkit-slider-thumb {
  background: var(--PrimaryColor);
  border: solid 0.2rem var(--whiteColor);
  border-radius: 50%;
  width: 1.2rem; height: 1.2rem;
  -webkit-appearance: none;
  appearance: none;
}
.searchListWrapper .slider-container .input-slider::-moz-range-thumb {
  background: var(--PrimaryColor);
  border: solid 0.2rem var(--whiteColor);
  border-radius: 50%;
  width: 1.2rem; height: 1.2rem;
  -webkit-appearance: none;
  appearance: none;
}

.searchListWrapper .listview-visibleContent { display: none; }
.searchListWrapper .filterlistContent.list-view-filter div[class*="col-"] { flex: 0 0 100%; width: 100%; max-width: 100%; }
.searchListWrapper .filterlistContent.list-view-filter .card { flex-direction: row; padding: 10px; } 
.searchListWrapper .filterlistContent.list-view-filter .listview-visibleContent { display: block; }
.searchListWrapper .filterlistContent.list-view-filter .listview-visibleContent .assetsNolist { margin-top: 20px; border-bottom: 0; }
.searchListWrapper .filterlistContent.list-view-filter :is(.listViewBox, .cardbottomContent) { flex: 0 0 auto; width: 25%; border: 0; }
.searchListWrapper .filterlistContent.list-view-filter :is(.cardMiddleContent) { flex: 0 0 auto; width: 50%; padding: 10px 30px; }
.searchListWrapper .filterlistContent.list-view-filter .listBx:not(.assetsNolist) { display: flex; flex-wrap: wrap; } 
.searchListWrapper .filterlistContent.list-view-filter .listBx:not(.assetsNolist) li { width: 50%; margin-bottom: 20px; }
.searchListWrapper .filterlistContent.list-view-filter .cardbottomContent .assetsNolist { display: none; }
.searchListWrapper .filterlistContent.list-view-filter .card .cardTitleWithImg { border: 0; }
.searchListWrapper .filterlistContent.list-view-filter .cardbottomContent { border-left: 1px solid #cccccc; padding-left: 20px; } 
.searchListWrapper .individualCard .cardTitleWithImg { align-items: flex-start; }
.searchListWrapper .individualCard .cardTitleWithImg .imgBx { max-width: 66.25px; /* was 106px */ height: 87.5px; /* was 140px */ padding: 0; border: 0; border-radius: 3.125px; /* was 5px */ overflow: hidden; } 
.searchListWrapper .individualCard .cardTitleWithImg .imgBx img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.searchListWrapper .individualCard .cardTitleWithImg .imgBx .blur-profile { filter: blur(2px); object-position: top; }
.searchListWrapper .individualCard .cardTitleWithImg .personNameInfo { width: calc(100% - 66.25px); padding-left: 6.25px; /* was 10px */ }
.searchListWrapper .individualCard .cardTitleWithImg .titleBx { width: 100%; padding-left: 0; }
.searchListWrapper .individualCard .full-details { display: flex; align-items: center; margin-top: 12.5px; /* was 20px */ } 
.searchListWrapper .individualCard .full-details .barcode { width: 100%; max-width: 31.875px; /* was 51px */ height: 31.25px; /* was 50px */ border-radius: 1.875px; /* was 3px */ position: relative; overflow: hidden; }
.searchListWrapper .individualCard .full-details .barcode img { object-fit: cover; width: 100%; height: 100%; opacity: 0.3; }
.searchListWrapper .individualCard .full-details .barcode .lockIcon { display: inline-block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); color: #000; } 
.searchListWrapper .individualCard .full-details .barcode .lockIcon svg{width: 1rem; } 
.searchListWrapper .individualCard .full-details .contentBx { width: calc(100% - 31.875px); padding-left: 6.25px; /* was 10px */ }
.searchListWrapper .individualCard .full-details .contentBx p { font-size: 0.875rem; /* was 14px */ line-height: normal; color: var(--BlackColor); font-weight: 400; margin-bottom: 3.125px; /* was 5px */ }
.searchListWrapper .individualCard .full-details .contentBx .click-here { color: var(--PrimaryColor); font-weight: 600; text-decoration: underline; font-size: 0.875rem; /* was 14px */ }
.searchListWrapper .assetscard .cardTitleWithImg { border-bottom: 0; }
.searchListWrapper .assetscard .cardTitleWithImg .imgBx { max-width: 100%; height: 131.25px; /* was 210px */ padding: 0; background: #fff; overflow: hidden; }
.searchListWrapper .assetscard .cardTitleWithImg .imgBx img { width: 100%; height: 100%; object-fit: contain; } 
.searchListWrapper .assetscard .reputationscorebx .scoreValueBx { font-size: 0.75rem; /* was 12px */ color: var(--WhiteColor); font-weight: 700; text-align: center; background: #F7A404; border-radius: 3.125px; /* was 5px */ padding: 3.125px 9.375px; /* was 5px 15px */ width: 100%; max-width: max-content; margin: auto; } 
.searchListWrapper .assetscard .reputationscorebx .scoreValueatitle { font-size: 0.75rem; /* was 12px */ font-weight: 600; text-align: center; padding-top: 1.25px; /* was 2px */ color: #F7A404; }
.searchListWrapper .assetscard .middlereputations-with-List { display: flex; align-items: center; } 
.searchListWrapper .assetscard .middlereputations-with-List .listBx { flex: 0 0 auto; width: 57%; }
.searchListWrapper .assetscard .middlereputations-with-List .reputationscorebx { flex: 0 0 auto; width: 43%; }
.searchListWrapper .assetscard .reputationscorebx { text-align: center; margin-top: 0; flex-direction: column; } 
.searchListWrapper .assetscard .reputationscorebx .iconBx { margin-bottom: 3.125px; /* was 5px */ }
.searchListWrapper .card .assetsNolist .assetsBx .iconBx { margin-bottom: 3.125px; /* was 5px */ }
.searchListWrapper .assetscard .reputationscorebx.good .scoreValueBx { background: #54B700; }
.searchListWrapper .assetscard .reputationscorebx.good .scoreValueatitle { color: #54B700; }
.searchListWrapper .assetscard .averageScore .titleBx { font-size: 0.625rem; /* was 10px */ }
.searchListWrapper .assetscard .listBx.assetsNolist { border-bottom: 0; }
.searchListWrapper .assetscard .reputationscorebx.poor .scoreValueBx { background: #D02500; }
.searchListWrapper .assetscard .reputationscorebx.poor .scoreValueatitle { color: #D02500; }
.searchListWrapper .assetscard .homeAssetsRowList { display: flex; align-items: center; flex-wrap: wrap; }
.searchListWrapper .homeassetscard .homeAssetsRowList { margin-top: 6.25px; /* was 10px */ }
.searchListWrapper .homeassetscard .homeAssetsRowList li { width: 33.33%; }
.searchListWrapper .homeassetscard .cardTitleWithImg .imgBx { border: solid 1px transparent; } 
.searchListWrapper .homeassetscard .cardTitleWithImg .imgBx img { object-fit: cover; } 
.searchListWrapper.loader-overlay-search:after { position: absolute; left: 0; right: 0; top: 0; bottom: 0; content: ''; background: #0000002b url(../images/loader-img.svg) no-repeat center center; background-size: 120px;} 
.searchListWrapper .searchtopBx .sortListBx.sortsGridNone .filter-GridList { display: none !important; }
.searchListWrapper .searchtopBx .sortListBx.sortsGridNone .filterDatebx { margin-right: 0; }


.assets-detail-list .left-img-box { text-align: center; }
.assets-detail-list .left-img-box .img-box-asset { text-align: center; margin-bottom: 1.25rem; }
.assets-detail-list .left-img-box .titlebx {
  font-size: 1rem;
  font-weight: 600;
  color: var(--BlackColor);
}
.assets-detail-list .left-img-box .qty-bx { margin-top: 1.25rem; }
.assets-detail-list .left-img-box .qty-bx h4 {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--BlackColor);
  margin-bottom: 0.25rem;
}
.assets-detail-list .left-img-box .detailbox {
  font-weight: 600;
  font-size: 1rem;
  color: var(--BlackColor);
}
.assets-detail-list > .row {
  background: var(--WhiteColor);
  border-radius: 0.625rem;
  margin: 0;
  padding: 1.25rem;
  align-items: center;
}
.assets-detail-list .detail-content {
  background: #EEEEEE;
  border-radius: 0.625rem;
  padding: 1.25rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}
.assets-detail-list .detail-content :is(.titlebx, .detailbox) {
  font-weight: 400;
  font-size: 1rem;
  color: var(--BlackColor);
}
.assets-detail-list .detail-content :is(.titlebx) {
  max-width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.assets-detail-list .top-title { margin-bottom: 0.9375rem; }




/* .company-summary-wrap .summary-back-btn{margin-bottom:30px;} */
.company-summary-wrap .summary-back-btn a{font-size: 1rem; color: var(---BlackColor); font-weight: 500; display: inline-block;}
.company-summary-wrap .summary-back-btn i{margin-right: 5px;}
.company-summary-wrap .summary-back-btn:hover{color: var(--PrimaryColor);}
.company-summary-wrap .top-title {margin: 2rem 0;}
.company-summary-wrap .top-title .company-title{font-size: 3rem;color: var(--PrimaryColor); margin-bottom:5px; line-height: normal;}
.company-summary-wrap .top-title .summery-title{font-weight: 600; font-size: 2rem;color: var(---BlackColor);}

.company-summary-wrap .top-title h4 a{color: var(--PrimaryColor);}

/* .company-summary-wrap .top-title h3{font-weight: 600; font-size: 2.4rem;color: var(---BlackColor); margin-top: 20px;} */
.company-summary-wrap .btn-icon {display: inline-block; margin-right: 10px;}
.company-summary-wrap .company-detail-wrap{background: #F3F3F3; border-radius: 10px; padding: 15px;margin-bottom: 20px;}
.company-summary-wrap .detail-list .detail-content{display: flex; padding: 10px; align-items: center;}
.company-summary-wrap .detail-list .titlebx{font-weight: 400; font-size: 1rem; color: var(---BlackColor); width: 42%;}
.company-summary-wrap .detail-list .detailbox{font-weight: 600; font-size: 1rem; color: var(---BlackColor);width: 58%; word-break: break-all;}
.company-summary-wrap .detail-list .detailbox a{color: var(--PrimaryColor);}
.company-summary-wrap .detail-list .view-all{color: var(--PrimaryColor); font-weight: 400; font-size:1rem}
.company-summary-wrap .detail-list p{font-size: 16px; font-weight: 400; line-height: 26px; color:var(---BlackColor)}
.company-summary-wrap .additional-information{background: var(--WhiteColor); border-radius: 10px; padding: 25px;}

.company-summary-wrap  h3{    font-weight: 600;
    font-size: 1.2rem;
    color: #263238;
    margin-top: 1.25rem;}

.company-summary-wrap .additional-information ul li{font-weight: 400; font-size: 1rem;color: var(---BlackColor); padding: 7px 0;}
.company-summary-wrap .additional-information .view-all-btn{color: var(--PrimaryColor); font-weight: 500; font-size: 2rem; margin-top: 25px;}
.company-summary-wrap .gray-border-top{  border-top: 1px solid #CBCBCB; margin-top: 15px; padding-top: 20px !important;}
.company-summary-wrap .org-summary-title { display: flex; align-items: center; }
.company-summary-wrap .org-summary-title .company-logobx {border: 1px solid #cccccc; border-radius: 8px; width:100%; max-width: 70px; min-width:70px; height: 70px; text-align: center; background: #fff; padding: 6px; }
.company-summary-wrap .org-summary-title .text-bx {margin-left: 15px;}
.company-summary-wrap .org-summary-title .company-logobx img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
/* .company-summary-wrap .org-summary-title .same-heading {padding-left: 20px;} */
/* .company-summary-wrap .org-summary-title .text-bx :is( h3, p) {margin-bottom: 0;} */




.email-note{font-size: 14px; color: var(---BlackColor); font-weight: 500; display: inline-block; margin-top: 13px;}
.reputation-score-content {background: var(--WhiteColor);
    border-radius: 0.625rem;
    padding: 1.25rem;
    margin-top: 1.25rem; }
.reputation-score-content p {    font-weight: 500;
    font-size: 1rem;
    color: #403F3F;}
.reputation-score-content .progress {background-color: #D9D9D9; border-radius: 100px; margin: 15px 0 25px; }
.reputation-score-content .progress-bar { background: var(--PrimaryColor); border-radius: 100px; }
.reputation-score-content .reputation-list {     display: flex;
    flex-wrap: wrap;
    margin: 0 -0.125rem;}
.reputation-score-content .reputation-list li {
    width: 32.40%;
    border: 0.0625rem solid #AFAFAF;
    border-radius: 0.3125rem;
    font-weight: 500;
    font-size: 1rem;
    color: var(--BlackColor);
    padding: 0.875rem 2.625rem 0.875rem 1.125rem;
    margin: 0.3125rem;
    background: url(../images/check-circle-icon.png) no-repeat right 1.25rem center;
    filter: grayscale(1);
}

.reputation-score-content  .reputation-list li.selected {filter: inherit;}




.score-graph-outer {width: 100%; max-width: 383px; margin: 8rem auto 0;}
.score-graph-outer h4 { font-size: 0.5vw; color: var(---BlackColor); font-weight: 400; line-height: 1.6; }
.score-graph-outer .no-bx { font-weight: 600; font-size: 0.8vw; color: var(---BlackColor); }
.score-graph-outer .cell-title { font-weight: 500; font-size: 0.6vw; color: var(--WhiteColor); padding: 0 0.3vw; }
.score-graph-outer .score-graph-inner { display: flex;position: relative;   align-items: center; background: linear-gradient(90deg, #c00 -0.08%, #e9a100 31.31%, #608923 61.13%, var(--PrimaryColor) 89.39%); border-radius: 5px; padding: 7px 6px; width: 100%;  min-height: 31px;}
.score-graph-outer .score-graph-inner .graph-cell { width: 20%; text-align: center; position: relative; }
.score-graph-outer .score-graph-inner .graph-cell .graphcell-innertext { font-weight: 500; font-size: 10px; color: var(---BlackColor); position: absolute; left: 50%; transform: translateX(-50%); bottom: -33px; }
.score-graph-outer .score-graph-inner .graph-cell .graphcell-innertext:before { width: 1px; background: #716f6f; height: 8px; position: absolute; left: 50%; transform: translateX(-50%); top: -6px; content: ""; }
.score-graph-outer .score-graph-inner .graph-hover-text { border-radius: 3px; padding: 5px; position: absolute; left: 7%; top: -71px; min-width: 68px; filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2)); background: var(--WhiteColor);  min-height: 50px;}
.score-graph-outer .score-graph-inner .graph-hover-text:before { width: 20px; background: #fff; height: 16px; clip-path: polygon(0 0, 0% 100%, 100% 0); position: absolute; left: 33%; transform: translateX(-50%); bottom: -14px; content: ""; clip-path: polygon(11% 0, 0 100%, 100% 0); box-shadow: 0px 0px 0px #000; }
.score-graph-outer .score-graph-inner .graph-hover-text:after { position: absolute; left: 5px; bottom: -23px; content: ""; width: 10px; height: 10px; border-radius: 50%; border: solid 1px #fff; background: #4e8e58; }
.score-graph-outer .score-static-bx { position: relative; text-align: center; width: 180px; left:50%; }
.score-graph-outer .score-static-bx:nth-child(1) { margin-left: -137px;}
.score-graph-outer .score-static-bx:nth-child(2) {     margin-left: -43px;}
.score-graph-outer .score-static-bx .no-bx { font-size: 12px; } 
.score-graph-outer .score-static-bx .dash-border-top { border: dashed 1px #716f6f; width: 1px; height: 50px; margin: 0 auto; }
.score-graph-outer .score-static-bx hr { border: 1px solid #716f6f; width: 100%; margin: 0 auto 1rem; max-width: 40%; }
.additional-information .reputation-text { margin-top: 2rem; border-top: 1px solid #CBCBCB; padding-top: 1rem; }
.additional-information .reputation-text  h3{  margin-bottom: 0px;} 
.additional-information .reputation-text .reputation-score{ font-size: 3rem; font-weight: 600; color: var(---BlackColor); margin-bottom: 0;  display: flex; align-items: center;}
.additional-information .reputation-text .reputation-score .badge {     font-weight: 500;
    font-size: 0.875rem;
    padding: 0.3125rem 0.5rem;
    border-radius: 0.3125rem;
    margin-left: 0.3125rem;;}
:is(.no-result, .no-record) { font-size: 18px; color: var(---BlackColor); font-weight: 400;}



.digital-documents-tabs .nav { margin: 0 1.6875rem; }
.digital-documents-tabs .nav .nav-item .nav-link {
  padding: 0.625rem 0.9375rem;
  font-weight: 400;
  font-size: 1rem;
  color: #494949;
  background: #f3f3f3;
  border-radius: 0.625rem 0.625rem 0 0;
  position: relative;
  min-height: 3.75rem;
  border: 0;
}
.digital-documents-tabs .nav .nav-item:not(:last-child) .nav-link:after {
  position: absolute;
  right: 0;
  top: 50%;
  content: '';
  height: 1.5625rem;
  width: 0.0625rem;
  background: #AEAEAE;
  transform: translateY(-50%);
}
.digital-documents-tabs .nav .nav-item .nav-link.active {
  background: var(--WhiteColor);
  color: var(--BlackColor);
}
.digital-documents-tabs .nav .nav-item .nav-link.active:after { background: var(--WhiteColor); }
.digital-documents-tabs .tab-content {
  background: var(--WhiteColor);
  border-radius: 0.625rem;
  padding: 0.9375rem;
}
.digital-documents-tabs .no-file-upload {
  padding: 0.9375rem;
  min-height: 15.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.digital-documents-tabs .no-file-upload p {
  font-size: 1rem;
  color: #ABABAB;
  margin-top: 0.9375rem;
}
.digital-documents-tabs ul li a {
  font-size: 1.125rem;
  color: var(--BlackColor);
  font-weight: 500;
}


.article-card-wrap .article-card {
  background: var(--WhiteColor);
  border-radius: 0.625rem; /* 10px */
  padding: 2rem;
  margin-bottom: 3rem;
}
.article-card-wrap .article-card h3 {
  font-weight: 600;
  font-size: 1.25rem; /* 20px */
  line-height: 1.6;
  color: var(--BlackColor);
  margin-bottom: 0.5rem; /* 8px */
}
.article-card-wrap .article-card p {
  font-weight: 400;
  font-size: 1rem; /* 16px */
  color: var(--BlackColor);
  line-height: 1.7;
}
.article-card-wrap .article-card .read-more-btn {
  display: inline-flex;
  align-items: center;
  color: #2296CF;
  font-weight: 600;
  font-size: 1rem; /* 16px */
  margin-top: 1.125rem; /* 18px */
}
.article-card-wrap .article-card .read-more-btn i {
  margin-left: 0.4375rem; /* 7px */
  font-size: 0.875rem; /* 14px */
}




.profile-detail-wrapper .profile-detail-left{display: flex;flex-wrap: wrap;}
.profile-detail-wrapper .profile-detail-left .profile-img{border: solid 1px #DEDEDE; border-radius: 10px; padding: 1.0417vw; width: 100%; max-width: 250px ; height:100%; min-height:260px; display: flex; align-items: center;  justify-content: center;}
.profile-detail-wrapper .profile-detail-left .profile-img .img-box{width: 147px; height: 147px; border-radius: 50%; overflow: hidden;} 
.profile-detail-wrapper .profile-detail-left .blur-profile .img-box{filter:blur(3px)} 
.profile-detail-wrapper .profile-detail-left .profile-content{width: calc(100% - 250px); padding: 0 3rem; }
.profile-detail-wrapper .profile-detail-left .profile-content .text-box{margin-bottom: 2vw;}
.profile-detail-wrapper .profile-detail-left .profile-content h4{font-size: 1.2rem; color: #282828; font-weight: 600;line-height: normal; }
.profile-detail-wrapper .profile-detail-left .profile-content p{font-size:1rem; color: #282828; font-weight: 500; line-height: normal;     word-break: break-all; } 


.profile-detail-wrapper .right-profilebarcode {width:100%; max-width: 160px; margin:0 auto; text-align: center;}
.profile-detail-wrapper .right-profilebarcode .barcode-img{width:100%; max-width: 160px; height: 160px; border-radius: 10px; overflow: hidden; position: relative;    margin: 0 auto 1rem;}

.profile-detail-wrapper .right-profilebarcode .barcode-img.blur-barcode:before{position: absolute; left: 0; right: 0; top: 0; bottom: 0; content: ''; background: rgba(255, 255, 255, 0.7); }
.profile-detail-wrapper .right-profilebarcode .barcode-img .lock-icon{position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 5rem; color: #000; }
.profile-detail-wrapper .right-profilebarcode .barcode-img .lock-icon svg{width: 2rem; height: 2rem;}

.profile-detail-wrapper .right-profilebarcode p{font-size: 14px; color: #000; font-weight: 300; font-style: italic; line-height: normal; margin-bottom: 5px;}
.profile-detail-wrapper .right-profilebarcode a{font-size: 16px; color: var(--PrimaryColor); font-weight: 500; font-style: italic; text-decoration: underline;}

.profile-tab-wrapper .nav .nav-item {padding: 0 0.7813vw;}
.profile-tab-wrapper .nav .nav-item:first-child {padding-left:0;}
.profile-tab-wrapper .nav .nav-item .nav-link { border: 0; background: transparent; font-size: 1rem; color: #6B6B6B; font-weight: 600;    line-height: normal;  border-bottom: solid 3px transparent; text-transform: uppercase; padding:0.7813vw; }
.profile-tab-wrapper .nav .nav-item .nav-link.active {border-bottom-color:var(--PrimaryColor); color: var(--PrimaryColor); }
.profile-tab-wrapper .tab-content{padding: 4rem 0;}

.profile-tab-wrapper :is(.certificate-title-box, .organizations-title-box) .view-certificate-request{display: flex; align-items: center; justify-content: end;}
.profile-tab-wrapper :is(.certificate-title-box, .organizations-title-box) .view-certificate-request p{font-size: 14px !important; color: #282828; font-weight: 500; line-height: normal; margin: 0 15px; }
.profile-tab-wrapper :is(.certificate-title-box, .organizations-title-box) .view-certificate-request .btn-primaryx{font-size: 14px; border-radius: 50px; padding: 5px 16px;}
.profile-tab-wrapper .certificate-card{border: solid 1px #CAC9C9; background: var(--WhiteColor); padding: 0.5208vw 1.0417vw; border-radius: 10px; position: relative; text-align: center; height: 100%;}
.profile-tab-wrapper .certificate-card .btn-primary{border-radius: 50px; font-size: 0.9rem;}
.profile-tab-wrapper .view-certificate-request .btn-primary{border-radius: 50px; font-size: 0.9rem;}
.profile-tab-wrapper .certificate-card .certificate-lock {text-align: right; color: var(--BlackColor);margin: 0 0 0.5rem;}
.profile-tab-wrapper .certificate-card .certificate-lock svg{width: 2rem; height: 2rem;}
.profile-tab-wrapper :is(.certificate-card, .tabcard-box ) p{font-size: 1rem; color: #747474; text-transform: uppercase; font-weight: 600; line-height: normal; }
.profile-tab-wrapper .certificate-card .pdf-iconbx{min-height:7rem; display: flex; align-items: center; justify-content: center; cursor: pointer;     width: 100%;
    max-width: 3rem;
    margin: auto;} 
.profile-tab-wrapper .certificate-tab-content .col-lg-3{margin-bottom: 15px;}
.profile-tab-wrapper :is(.certificate-card, .tabcard-box) .btn-primaryx{font-size: 12px; padding: 8px 13px;border-radius: 50px;}




.Downloads{    background: #f6f6f6;}
.Downloads__hero {
	background: var(--PrimaryColor);
	padding: 6.25rem 0;
	color: #fff;
	position: relative;
	overflow: hidden
}

.Downloads__hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .3);
	z-index: 1
}

.Downloads__hero__content {
	position: relative;
	z-index: 2
}

.Downloads__hero__title {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	line-height: 1.2;    color: #fff;
}

.Downloads__hero__subtitle {
	font-size: 1rem;
	opacity: .9;
	line-height: 1.5;    color: #fff;
}

.Downloads__content {
	padding: 5rem 0
}

.Downloads__section {
	margin-bottom: 5rem
}

.Downloads__section:last-child {
	margin-bottom: 0
}

.Downloads__section__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 3rem;
	gap: 1rem
}

.Downloads__section__icon {
	width: 2rem;
	height: 2rem;
	object-fit: contain
}

.Downloads__section__title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--BlackColor);
	margin: 0
}

.Downloads__section__subtitle {
	font-size: 1.6rem;
	font-weight: 300;
	text-align: left;
	margin: 2rem 0;
	color: var(--BlackColor);
	position: relative;
	padding: .5rem 0 .5em 2.5rem
}

.Downloads__section__subtitle::before {
	content: "";
	position: absolute;
	top: 47%;
	left: 0;
	height: 1px;
	width: 2.2rem;
	background: #000;
	z-index: 1
}

.Downloads__section__subtitle::after {
	content: attr(data-text);
	position: relative;
	background: #f6f6f6;
	z-index: 2;
	display: inline-block
}

.Downloads__subsection {
	margin-bottom: 4rem
}

.Downloads__subsection:last-child {
	margin-bottom: 0
}

.Downloads__subsection__title {
	font-size: 1.75rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--BlackColor);
	position: relative;
	padding: 1rem 0
}

.Downloads__subsection__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2.5rem;
	height: .125rem;
	background: var(--PrimaryColor);
	border-radius: .0625rem
}

.Downloads__separator {
	text-align: center;
	margin: 3rem 0;
	padding: 0 1rem
}

.Downloads__separator__text {
	font-size: 1rem;
	font-weight: 600;
	color: var(--PrimaryColor);
	text-transform: uppercase;
	letter-spacing: .025rem;
	white-space: nowrap
}

.Downloads__app-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center
}

.Downloads__app-card__content-wrapper {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1);
	transition: all .3s ease;
	border: .0625rem solid #e5e7eb;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%
}

.Downloads__app-card__content-wrapper:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .15)
}

.Downloads__app-card__content-wrapper--unavailable:hover {
	transform: none;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1)
}

.Downloads__app-card__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.5rem;
	flex: 1
}

.Downloads__app-card__icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	flex-shrink: 0
}

.Downloads__app-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.Downloads__app-card__icon img[src*=apple-icon],
.Downloads__app-card__icon img[src*=clear-app-store],
.Downloads__app-card__icon img[src*=play-store-icon] {
	filter: brightness(0.7) contrast(1.2)
}

.Downloads__app-card__icon--placeholder {
	background: #e5e7eb;
	border: 1px solid #d1d5db
}

.Downloads__app-card__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%
}

.Downloads__app-card__name {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--BlackColor);
	margin-bottom: .5rem;
	line-height: 1.3
}

.Downloads__app-card__description {
	font-size: .875rem;
	color: #6b7280;
	line-height: 1.4;
	margin: 0 0 1rem 0
}

.Downloads__app-card__action {
	text-align: center;
	width: 100%
}

.Downloads__app-card__availability {
	font-size: .875rem;
	color: var(--PrimaryColor);
	margin-bottom: .5rem;
	font-weight: 600
}

.Downloads .download-with-login-btn {
	display: flex;
	align-items: center;
	gap: .5rem
}

.Downloads__download-btn {
	background: #fff;
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	padding: .5rem 1rem;
	border-radius: .25rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center
}

.Downloads__download-btn:hover {
	background: var(--PrimaryColor);
	color: #fff
}

.Downloads__download-btn:active {
	transform: translateY(0)
}

.Downloads__download-btn:focus {
	outline: none;
	box-shadow: 0 0 0 .1875rem var(--PrimaryColorTransparent)
}

.Downloads__download-btn--disabled {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none
}

.Downloads__download-btn--disabled:hover {
	background: #fff;
	color: var(--PrimaryColor);
	transform: none;
	box-shadow: none
}

.Downloads__download-btn--disabled:focus {
	box-shadow: none
}

.Downloads__login-btn {
	background: #fff;
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	padding: .5rem 1rem;
	border-radius: .25rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center
}

.Downloads__login-btn:hover {
	background: var(--PrimaryColor);
	color: #fff
}

.Downloads__login-btn:active {
	transform: translateY(0)
}

.Downloads__login-btn:focus {
	outline: none;
	box-shadow: 0 0 0 .1875rem var(--PrimaryColorTransparent)
}

.Downloads__login-btn--disabled {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none
}

.Downloads__login-btn--disabled:hover {
	background: #fff;
	color: var(--PrimaryColor);
	transform: none;
	box-shadow: none
}

.Downloads__login-btn--disabled:focus {
	box-shadow: none
}

.Downloads__status {
	display: inline-block;
	font-size: .9rem;
	font-weight: 600;
	padding: .12rem .8rem;
	border-radius: 50px;
	margin-top: 6px
}

.Downloads__status--in-review {
	background-color: #e0e0e0;
	color: #555
}

.Downloads__status--live {
	background-color: #28a745;
	color: #fff
}

.Downloads__featured {
	padding: 5rem 0;
	background: #fff
}

.Downloads__featured .Downloads__featured__title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--BlackColor);
	margin: 0 0 3rem;
	text-align: center
}

.Downloads__featured .download-platform-card {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1);
	transition: all .3s ease;
	border: .0625rem solid #e5e7eb;
	text-align: center;
	height: 100%
}

.Downloads__featured .iconbx {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: #f6f6f6;
	display: flex;
	align-items: center;
	justify-content: center
}

.Downloads__featured .iconbx img {
	width: 100%;
	max-width: 39%
}

.Downloads__featured h3 {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--BlackColor);
	margin-bottom: 1rem;
	line-height: 1.3
}

.Downloads__featured .btn-disable {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none;
	font-size: .9rem;
	padding: .5rem .9375rem;
	border-radius: 10px;
	font-weight: 400
}

