:root {
    --PrimaryColor: #2a60f4;
    --WhiteColor: #fff;
    --BlackColor: #000;
    --LightGrayColor: #ECECEC;
    --heading-text: #262626;

}

html {
    font-size: 16px;
}
html,
body {
    scroll-behavior: smooth; overflow-x: hidden;
}

body {
    color: #3a3a3a;
     font-family: "Inter", sans-serif;
    font-weight: 400;
}
a {
    text-decoration: none;
    transition: all 0.2s ease;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.bg-soft {
    background: #F8F8F8;
}

.btn {
        font-size: 1rem;
        padding: 0.6rem 1.4rem;
        border-radius: 0;
        line-height: 1.25rem;
        font-weight: 400;
        transition: all 0.2s ease; 
        display: inline-flex;
        align-items: center;
        gap: 0.5rem; text-align: center; justify-content: center;
}
.btn svg{
    width: 1.2rem;
}
.btn:hover,
.btn:focus,
.btn.active {
    outline: none !important;
    box-shadow: none !important;
}

.btn-primary {
    color: var(--WhiteColor);
    background: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
}


.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
   color: var(--PrimaryColor) !important;
    background: var(--WhiteColor)!important;
    border-color: var(--PrimaryColor) !important;

}


.btn-white {
    color:#3B3B3B;
    background: var(--WhiteColor);
    border-color: var(--WhiteColor);
}


.btn-white:hover,
.btn-white:focus,
.btn-white.active {
   color: var(--WhiteColor) !important;
    background: var(--PrimaryColor)!important;
    border-color: var(--PrimaryColor)!important;
 
}

.btn-outline-primary {
    color:var(--PrimaryColor);
    background: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}


.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active {
   color: var(--WhiteColor) !important;
    background: var(--PrimaryColor)!important;
    border-color: var(--PrimaryColor) !important;
 
}





.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}
.same-heading {margin-bottom: 4rem;}
.same-heading h2 {
    color: #343434;
    font-size: 1.8rem;
    font-weight: 600;
    line-height:1.3; margin-bottom: 1rem;
}

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4; margin-bottom: 0.6rem;
}

.same-heading p {
     color: #4b5563;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}
.view-all{color: var(--PrimaryColor); font-size: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 400;}

.same-heading .primary-text {font-size: 1rem; font-weight: 600; ; line-height: 1.2; margin-bottom: 0.5rem;}

.bg-gray{background: #F4F4F4;}

.max-wid-50{width: 100%; max-width: 60%;}
.same-heading.text-center .max-wid-50{margin:0 auto;}
.same-heading.white-text :is( h2, p) {color: var(--WhiteColor);}

.same-section .section-bottom-btn{margin-top: 1.5rem;}
.section-bottom-btn{display: flex; gap: 1rem; align-items: center; }
.section-bottom-btn.text-center{justify-content: center;}


@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header  {padding: 1rem 0; background: transparent; border-bottom: solid 3px var(--PrimaryColor); position: relative;  transition: all 0.3s ease; z-index: 99; position: relative;}
.header .container-fluid{padding: 0 3vw; }
.header .navbar{padding: 0;   gap: 1rem;   flex-wrap: nowrap; }
.header .navbar .header-menu{display: flex; align-items: center;  justify-content: space-between; width: calc(100% - 150px);}
.header .header-meu-nav .btn-outline-primary{margin-left: 0.5rem;}



.header .navbar  .nav {align-items: center; gap: 1rem;}
.header .navbar .nav.header-meu-nav{gap: 0.7rem;}

.header .navbar  .nav-link{position: relative; display: inline-flex; align-items: center; gap: 0.3rem; color: var(--BlackColor); font-size: 0.9rem; padding: 0.2rem 0.4rem;  transition: all .2s ease; }
.header .navbar  .nav-link svg{width: 1rem;}
.header .navbar  .dropdown-item{    position: relative;
    color: var(--BlackColor);
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
    transition: all .2s 
ease;}
.header .navbar  .dropdown a{    color: var(--BlackColor);
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
    transition: all .2s 
ease;}
.header .navbar  .dropdown a:hover{color: var(--PrimaryColor);}
/* .header .navbar .nav-link::before{content: ""; position: absolute; left: 0;right: 0; bottom: -1px; width: 0%; margin: 0 auto; height: 2px; background-color: var(--PrimaryColor); transition: width 0.3s ease;} */
.header .navbar-brand {padding: 0;}
.header .navbar  .nav-link:hover{color: var(--PrimaryColor);}
.header .navbar  .nav-link:hover:before{width: 100%;}
.header .navbar  .nav-link.active { color:var(--PrimaryColor)}
.header .navbar  .nav-link.active:before{width: 100%;}
.header .navbar  .dropdown .dropdown-menu{    border: 1px solid #DDDDDD; padding: 0.5rem;}
.header .navbar  .dropdown a svg{width: 1rem;}
.header .dropdown-toggle::after{display: none;}
.header .navbar  .dropdown:hover>.dropdown-menu {display: block;top: 100%; margin: 0; }
.header .navbar  .dropdown:hover>.dropdown-menu a:hover{color: var(--PrimaryColor); }
.header .navbar  .dropdown-item.active, .header .navbar  .dropdown-item:active{background: var(--WhiteColor) !important;}
.header.headerFix { position: fixed; background: var(--WhiteColor); top: 0; left: 0; width: 100%;  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08); z-index: 99;animation:headerfixdown 0.7s; } 
.header .navbar-brand img{    max-height: 2.5rem;}
.header .search-icon{color: var(--BlackColor);}
.header .search-icon svg{width: 1.5rem;}

.header.headerFix   .btn-primary {background: var(--WhiteColor); color: var(--PrimaryColor); border-color: var(--WhiteColor);}
.header.headerFix .navbar .nav-link::before{background-color:var(--WhiteColor)}


@keyframes headerfixdown {
    0% {
    opacity: 0;
    transform: translateY(-100%);
} 
100% {
    opacity: 0.9;
    transform: translateY(0);
    } 
}

.mobile-menu-toggle { background: var(--PrimaryColor); color: var(--WhiteColor); width: 2.2rem; height: 2.2rem; padding: 0.2rem; border-radius: 50%; line-height: 0; border: solid 1px var(--PrimaryColor); font-size: 1rem; cursor: pointer;  display: none;}
.mobile-menu-toggle svg{width:  1.2rem; color: var(--WhiteColor);}

.mobile-sidemenu .dropdown-toggle::after{display: none;}

/*  header css */
.body-overlay.active{display: block;}
.mobile-sidemenu{position: fixed; display: none; top: 0; left: -100%; width: 22rem; height: 100%; background: var(--WhiteColor); box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2); transition: left 0.3s ease; padding: 0; z-index: 9999; gap: 1rem;}
.mobile-sidemenu ul:not(.dropdown-menu){display: flex;  gap: 1.2rem; flex-direction: column;}
.mobile-sidemenu .close-sidebarmenu{background: var(--PrimaryColor); color: var(--WhiteColor); width: 2.2rem; height: 2.2rem;display: flex; align-items: center; justify-content: center; margin-left: auto; padding: 0.2rem; border-radius: 50%; line-height: 0; border: solid 1px var(--PrimaryColor); font-size: 1rem; cursor: pointer;}
.mobile-sidemenu .close-sidebarmenu svg{width: 1.2rem; color: var(--WhiteColor);}
.mobile-sidemenu a:not(.btn-outline-primary){ color: var(--BlackColor); font-size: 1.2rem; font-weight: 400;}
.mobile-sidemenu.active {left: 0;}
.mobile-sidemenu a:not(.close-sidebarmenu) svg{width: 1.1rem; margin-right: 0.5rem;}
.mobile-sidemenu .mobile-sidemenu-head{    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem;
    gap: 1rem 1.5rem;
    border-bottom: 1px solid rgb(223, 223, 223); }
.mobile-sidemenu a.logo {
    width: 100%;
    max-width: 120px;
}

.mobile-sidemenu .mobile-sidemenu-middle{    padding: 1rem;}

.body-overlay{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1050; display: none;}
.primary-text{color: var(--PrimaryColor); font-size: 1rem; font-weight: 400;}

.hero-banner{padding: 7rem 0 3rem; display: flex; align-items: center; justify-content: center;}

.hero-banner .hero-video{ position: absolute;top: 50%;left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover;z-index: 1;}
 .hero-banner .hero-content { position: relative; z-index: 4; width: 100%;}  

.hero-banner h1{letter-spacing: -0.025em; font-weight: 500; font-size: 3rem; line-height: 1.2; color: var(--BlackColor); margin-bottom: 1rem; }
.hero-banner h1 small{font-size: 2rem; display: block; font-weight: 400; margin-bottom: 0.5rem;}

.hero-banner p{ font-weight: 400; font-size: 1rem;  color: var(--BlackColor); width: 100%; max-width: 70%; }
.hero-banner .section-bottom-btn {margin-top: 2rem;}


.bg-clear-blue{position: relative; background: linear-gradient(to bottom, #fff 60%, #2a60f4 40%);}
.bg-clear-blue{position: relative;}

.investment-bx{background: var(--WhiteColor); padding: 2rem; border: solid 1px #e5e7eb;}
.investment-bx .iconBx{width: 4rem; height: 4rem; margin-bottom: 1rem; border-radius: 50%; border: solid 1px var(--PrimaryColor); display: inline-flex; padding: 0.2rem; align-items: center; justify-content: center;}
.investment-bx h3{ font-weight: 500; font-size: 1.2rem; line-height: 1.5; color: var(--BlackColor); margin-bottom: 0.4rem;}
.investment-bx p{ color: #666666; font-size: 0.9rem; font-weight: 400; width: 100%; max-width: 80%;}


.check-list li { padding:0.5rem 0 0.5rem 2rem; font-size: 0.9375rem;color: #595959; position: relative; }
.check-list li .check-icon{width: 1.5rem; height: 1.5rem; font-size: 0.6rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: #FFD4D3; color: var(--PrimaryColor); position: absolute; left: 0; top: 6px; }
.check-list li .check-icon svg{width: 0.9rem;}
/* Item Box */
.portfolio-overview .po-item {
  padding: 1rem;
}

.portfolio-overview .po-item .po-item-icon{    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: solid 1px #D2D2D2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px; margin-bottom: 1rem;}

.portfolio-overview .po-item .po-item-icon img {
    max-height: 30px;
}

/* Header (title + badge) */
.portfolio-overview .po-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center; gap: 0.7rem;
}

/* Item Title */
.portfolio-overview .po-item-title {
font-weight: 500;
    font-size: 1.2rem;
    line-height: normal;
    color: var(--BlackColor);
    margin-bottom: 0.3rem;
}

/* Description */
.portfolio-overview .po-item-desc {
  font-size: 1rem;
  color: #6b7280;
  margin-top: 0.6rem;
}

/* Bottom Tag */
.portfolio-overview .po-item-tag {
  font-size: 0.9rem;
  margin-top: 0.4rem;
  color: #333333;
}

/* Badges */
.portfolio-overview .po-badge {
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
  border-radius: 1rem;
  color: #ffffff;
}

/* Active Badge */
.portfolio-overview .po-badge-active {
  background-color: #a7c4ff;
  color: #003eaa;
}

/* Growth Badge */
.portfolio-overview .po-badge-growth {
  background-color: #c5f5cc;
  color: #0b7d1a;
}

/* Development Badge */
.portfolio-overview .po-badge-dev {
  background-color: #ffe0b3;
  color: #a16200;
}


.ecosystem-section {min-height: 900px; background: var(--BlackColor)}
.ecosystem-section .ecosystem-section-bg{background: var(--BlackColor) url(../images/lifecoin-bg.png)no-repeat center center;}
.ecosystem-section .same-heading h2{color: var(--WhiteColor);}
.ecosystem-section .same-heading p{color: var(--WhiteColor);}
.ecosystem-section .eco-content{text-align: center;}
.ecosystem-section .row .col-md-3{position: relative;}
.ecosystem-section .row .col-md-3:first-child{margin-top: 180px;}
.ecosystem-section .row .col-md-3:nth-child(2){margin-top: 100px;}
.ecosystem-section .row .col-md-3:nth-child(3){margin-top: 60px;}

.ecosystem-section .eco-content h4{font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--WhiteColor);
    margin-bottom: 0.4rem;}
.ecosystem-section .eco-content p{    font-size: 0.9rem;
    margin-top: 0.4rem;
    color: #9ca3af;}

 .ecosystem-section   .explore-text{margin-top: 3rem;}
 .ecosystem-section   .explore-text h3{font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--WhiteColor);
    margin-bottom: 0.4rem; text-align: center;}

 .ecosystem-section   .explore-text p{font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    color: #9ca3af;
    margin-bottom: 0.4rem; text-align: center;}
    


    /* Tabs */
.investor-section .investor-tabs {
  border-bottom: 0.1rem solid #e5e7f0;
  margin-top: 2rem;
}

.investor-section .investor-tabs .nav-link {
  font-size: 1rem;
  padding: 1rem 2rem;
  border: none;
  border-bottom: 0.2rem solid transparent;
  color: #666666;
  font-weight: 500;
}

.investor-section .investor-tabs .nav-link.active {
  color: var(--PrimaryColor);
  border-bottom-color: var(--PrimaryColor);
  background-color: transparent;
}

/* Tab content */
.investor-section .investor-tab-content {
  margin-top: 2.4rem;
}

/* Cards */
.investor-section .investor-card {
  border: 1px solid #e5e7f0;
  border-radius: 0rem;
  padding: 1rem;

  background-color: #ffffff;
}

.investor-section .investor-card-title {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--BlackColor);
    margin-bottom: 0.4rem;
}

.investor-section .investor-valuation {
font-size: 1rem;
    color: #6b7280;
    margin-top: 0.6rem;
}

.investor-section .investor-percentage {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--PrimaryColor); line-height: normal;
}

.investor-section .investor-meta {
font-size: 1rem;
    color: #6b7280;
    margin-top: 0.6rem;
}

/* Placeholder content for other tabs */
.investor-section .investor-tab-placeholder {
  padding: 2.4rem 1.2rem;
  text-align: center;
}

.investor-section .investor-tab-placeholder h5 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.investor-section .investor-tab-placeholder p {
  font-size: 1.3rem;
  color: #666666;
}


/* Cards */
.why-now-section .wn-card {
  border: 1px solid #e5e7f0;
  border-radius: 0rem;
  padding: 1rem;
  background-color: #ffffff;
  text-align: center; display: block;

}

/* Card Title */
.why-now-section .wn-card-title {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--BlackColor);
    margin-bottom: 0.4rem;
}

/* Blue Highlight Text */
.why-now-section .wn-highlight {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--PrimaryColor);
    margin-bottom: 0.4rem;
}

/* Description */
.why-now-section .wn-desc {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 0.6rem;
}

.why-now-section .image-bx{margin-top: 3rem; width: 100%; max-width: 80%; margin:3rem auto 0;}


/* White Boxes */
.secgov-section .secgov-bg {
  background-color: #ffffff;
  border-radius: 0rem;
  padding: 1rem;
min-height: 350px;
}

/* Headings */
.secgov-section .secgov-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111111;
}

/* Item Blocks (Left List) */
.secgov-section .secgov-item {
  padding: 1rem 0;

}



/* Item Title */
.secgov-section .secgov-item-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1a1a1a;
}

/* Item Description */
.secgov-section .secgov-item-text {
  font-size: 0.9rem;
  color: #838383;
  margin-bottom: 0;
}

/* Date (Right side) */
.secgov-section .secgov-item-date {
  font-size: 0.9rem;
  color: #838383;
  white-space: nowrap;
}

/* Right Column Links */
.secgov-section .secgov-list li {
  padding: 1rem 0;

}


.secgov-section .secgov-link {
  font-size: 1rem;
  color: #505050;
  text-decoration: none;
}
.secgov-section .section-bottom-btn{margin-top: 4rem;}
.secgov-section .btn-outline-primary{background: transparent;}

/* ========== STOCK HEADER ========== */
.ch-stock-header {
  background-color: #fff;
  padding: 1rem ; margin-bottom: 3rem;
}



.ch-stock-symbol {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0b1220;
}

.ch-stock-company {
  font-size: 0.9375rem;
  color: #4b5563;
}

.ch-stock-header-center {
  flex: 0 0 16rem;
  margin: 0 2rem;
}

.ch-stock-header-right{text-align: right;}

.ch-stock-header-right .ch-stock-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--PrimaryColor);
  line-height: 1.1;
}

.ch-stock-change {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #16a34a;
  margin-top: 0.25rem;
}

.ch-stock-updated {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.25rem;
}


/* Cards */
.news-insights-section .ni-card {
  border-radius:0rem;
  border: 0.0625rem solid #e5e7eb;
  padding: 1rem;
  background-color: #ffffff; transition: all .2s ease;

}

.news-insights-section .ni-card:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.08);
  transform: translateY(-0.25rem);
}

/* Tag labels */
.news-insights-section .ni-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 0;
  font-size: 0.75rem;     
  font-weight: 400;
  text-transform: none;
  margin-bottom: 1rem;
}

.news-insights-section .ni-tag-blue {
  background-color: var(--PrimaryColor);
  color: #ffffff;
}

.news-insights-section .ni-tag-dark {
  background-color: #0f245d;
  color: #ffffff;
}

.news-insights-section .ni-tag-orange {
  background-color: #f97316;
  color: #ffffff;
}

/* Card content */
.news-insights-section .ni-card-title {
  font-size: 1.25rem;      /* ~20px */
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.news-insights-section .ni-card-text {
  font-size: 0.9375rem;    /* ~15px */
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* Read more link */
.news-insights-section .ni-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--PrimaryColor);
  text-decoration: none;
}

.news-insights-section .ni-link:hover {
  text-decoration: underline;
}

.news-insights-section .ni-link-arrow {
  font-size: 1rem;
  margin-left: 0.25rem;
}

.ch-sec-box {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 0.125rem 0.375rem rgba(15, 23, 42, 0.06);
  height: 100%;
}

.ch-sec-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #0b1220;
}

.ch-sec-item {
  padding: 0.75rem 0;
  border-bottom: 0.0625rem solid #e5e7eb;
}

.ch-sec-item:last-of-type {
  border-bottom: none;
}

.ch-sec-item-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #111827;
}

.ch-sec-item-sub {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: #6b7280;
}

.ch-sec-item-date {
  font-size: 0.875rem;
  color: #6b7280;
  white-space: nowrap;
  margin-left: 1.5rem;
}

.ch-sec-btn {
  border-radius: 999rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  background-color: var(--PrimaryColor);
  color: #ffffff;
  border: 0.0625rem solid var(--PrimaryColor);
  box-shadow: 0 0.125rem 0.25rem rgba(37, 99, 235, 0.25);
}

.ch-sec-btn:hover {
  background-color: var(--PrimaryColor);
  border-color: var(--PrimaryColor);
}

/* Governance links */
.ch-gov-item {
  padding: 0.5rem 0;
}

.ch-gov-link {
  font-size: 0.9375rem;
  color: #111827;
  text-decoration: none;
}

.ch-gov-link:hover {
  color: var(--PrimaryColor);
  text-decoration: underline;
}



.footer {
  background: #000000;
  color: #ffffff;
  padding: 3rem 0 2rem;

}
.footer .clear-footer-logo{margin-bottom: 1rem;}




/* Tagline */
.footer .clear-footer-tagline {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #919191; width: 100%; max-width: 50%;
  margin: 0;
}

/* NASDAQ Card */
.footer .clear-footer-nasdaq-card {
  background-color: #0E0E0E;
  border-radius: 0;
  padding: 1rem;
  margin-top: 1.5rem; width: 100%; max-width: 80%;
}

.footer .clear-footer-nasdaq-label {
  font-size: 1rem;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.footer .clear-footer-nasdaq-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--PrimaryColor);
 line-height: normal;
}

.footer .clear-footer-nasdaq-change {
  font-size: 0.86rem; font-weight: 400;
  color: #05AC0D;
}

/* Column headings */
.footer h4 {
  font-size: 1rem; line-height: normal;
  font-weight: 600; color: var(--WhiteColor);
  margin-bottom: 0.6rem;
}


.footer .clear-footer-links a {
  font-size: 0.9rem;
  color: #A4A4A4; display: block; padding: 0.4rem 0;
}

.footer .clear-footer-links a:hover {
  color: var(--PrimaryColor);
}

/* Divider line */
.footer .clear-bottom-content {
  border-top: solid 1px #424242;
  margin-top: 2.5rem; padding-top: 1.5rem;
}

/* Bottom copy */
.footer .clear-footer-copy {
  font-size: 0.8rem;
  color: #fff;
  margin: 0;

}

/* Bottom links */
.footer .clear-footer-bottom-links{display: flex; align-items: center; justify-content: end; gap: 1rem;}
.footer .clear-footer-bottom-links a {
  font-size: 0.8rem;
  color: #A4A4A4;
  margin-left: 1.5rem;
}


.footer .clear-footer-bottom-links a:hover {
  color: var(--PrimaryColor);
}

/* Disclaimer box */
.footer .clear-footer-disclaimer-box {
  margin-top: 2rem;
  background-color: #0e0e0e;
  border-radius: 0;
  padding: 1.5rem ;
}

.footer .clear-footer-disclaimer-title {
  font-size: 0.86rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.footer .clear-footer-disclaimer-text {
  font-size: 0.8rem;
  color: #6d6d6d;
  margin: 0;
  line-height: 1.6;
}




.digitaltown-hall-wrap { position: relative;}
.digitaltown-hall-wrap: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; } 

.digitaltown-hall-wrap  .town-metting { width: 100%; max-width: 800px; margin: 3rem auto 0; display: flex; align-items: center; background: url(../images/white-circle-icon.png)no-repeat right bottom; background-size: 60px;gap: 1rem; }
.digitaltown-hall-wrap  .town-metting  .left-text{font-size: 3.5rem; font-weight: 800; text-transform: uppercase; line-height: 1; text-align: end; color: var(--PrimaryColor); width: 50%;}
.digitaltown-hall-wrap  .town-metting  .left-text .towntext {font-size: 2.5rem;}
.digitaltown-hall-wrap  .town-metting  .left-text .border-text {color: #fff; text-shadow: -1px 1px 0 var(--PrimaryColor), 1px 1px 0 var(--PrimaryColor), 1px -1px 0 var(--PrimaryColor), -1px -1px 0 #2396CF; display: block;}

.digitaltown-hall-wrap  .town-metting  .right-text { width: 50%; background: url(../images/global-reset.png)no-repeat left center; padding: 10px 10px 10px 40px; min-height: 170px; display: flex; flex-direction: column; justify-content: center;   }
.digitaltown-hall-wrap .town-metting .right-text p { font-size: 2rem; color: #282828; text-transform: uppercase; line-height: 1.1; font-weight: 800; margin-bottom: 0;}
.digitaltown-hall-wrap .town-metting .right-text p + p{margin-top: 1.1rem;}
.digitaltown-hall-wrap .town-metting .right-text p small { font-size: 1.2rem; color: #282828; font-weight: 800; display: block; }


/* Funding rounds section – parent scoped */
.funding-rounds-section {
  background-color: #ffffff;

}

/* Card */
.funding-rounds-section .funding-card {
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  background-color: #ffffff;
}

.funding-rounds-section .funding-round-status {
  font-size: 1rem;
  font-weight: 600;
  color: var(--BlackColor);
  margin-bottom: 0.6rem;
}
.funding-rounds-section .funding-round-status.primary-color {

  color: var(--PrimaryColor);

}

.funding-rounds-section .funding-amount {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.4rem;
}

.funding-rounds-section .funding-valuation {
  font-size: 0.86rem;
  color: #6b7280;
  margin-bottom: 1.0rem;
}

/* Progress bar */
.funding-rounds-section .funding-progress {
  width: 100%;
  height: 10px;
  background-color: #D9D9D9;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.funding-rounds-section .funding-progress-bar {
  height: 100%;
  background-color: var(--PrimaryColor);
  border-radius: 1rem;
}

/* Meta text */
.funding-rounds-section .funding-meta {
  font-size: 0.82rem;
  color: #4b5563;
  margin-bottom: 0.2rem;
}

.funding-rounds-section .funding-structure {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 0;
}


/* Left side */
.usefund-section .uf-list{margin-left: 1rem;}
.usefund-section .uf-list li {
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 0.9rem;
  position: relative;
}

.usefund-section .uf-list li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  top: 0;
  font-size: 1.2rem;
  color: #111827;
}

/* Right CTA Box */
.usefund-section .uf-cta-card {
  background-color: var(--PrimaryColor);
  color: #ffffff;
 min-height: 300px; display: flex; align-items: center; justify-content: center;
  padding: 2rem; flex-direction: column;
  height: 100%; text-align: center;
}

.usefund-section .uf-cta-heading {
  font-size: 1.8rem;
  font-weight: 700;
}

.usefund-section .uf-cta-text {
  font-size: 1rem;
  opacity: 0.9;
}
.usefund-section .uf-cta-card .btn-outline-primary{background: var(--PrimaryColor) ; color: var(--WhiteColor);border-color: var(--WhiteColor);} 
.usefund-section .uf-cta-card .btn-outline-primary:hover{background: var(--WhiteColor) !important; color: var(--PrimaryColor ) !important;border-color: var(--WhiteColor) !important;} 

/* Parent wrapper */
.fund-emerging-section {
  background-color: #ffffff;

}

/* Headings */
.fund-emerging-section .same-heading h2 {
 font-weight: 400;
}

.fund-emerging-section .fund-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #4b5563;
}

/* Cards */
.fund-emerging-section .fund-card {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #DDDDDD;

  height: 100%;
}
.fund-emerging-section .fund-card .fund-card-header{display: flex; align-items: center; padding: 1rem;gap: 0.8rem; border-bottom: dashed 1px #C8B8B8; }
.fund-emerging-section .fund-card .fund-card-header .fund-card-body{padding: 0; }
.fund-emerging-section .fund-card .fund-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: solid 1px #f6f6f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;    flex-shrink: 0;
}
.fund-emerging-section .fund-card .fund-icon img{max-height: 30px;}
/* Card title and subtitle */
.fund-emerging-section .fund-card  h4 {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: normal;
    color: var(--BlackColor);
    margin-bottom: 0;
}

.fund-emerging-section .fund-card .fund-card-header p {
    font-size: 0.8rem;
    color: #6b7280;margin-bottom: 0;

}

/* Body typography */
.fund-emerging-section .fund-card .fund-card-body {
 padding: 1rem;
}

.fund-emerging-section .fund-card .fund-label {
  font-size: 0.8rem;
    color: #6b7280; margin-bottom: 0.3rem;
}

.fund-emerging-section .fund-card .fund-value {
  font-size: 1.2rem;
  font-weight: 600; line-height: normal;
  color: var(--BlackColor);
}

 .fund-emerging-section .fund-card .fund-meta {
  font-size: 0.8rem;
    color: #6b7280; margin-bottom: 0.3rem;
}

.fund-emerging-section .fund-card .fund-meta-value {
  font-size: 1rem;
  font-weight: 600;
  color: #484848; margin-bottom: 0;
}


.fund-emerging-section .fund-card .fund-progress-wrapper {
  margin-top: 0.6rem;
}

.fund-emerging-section .fund-card .fund-progress {
  width: 100%;
  height: 10px;
  border-radius: 50px;
  background-color: #D9D9D9;
  overflow: hidden; 
}

.fund-emerging-section .fund-card .fund-progress-bar {
  height: 100%;
  border-radius: 50px;
  background-color: var(--PrimaryColor);
}

.fund-emerging-section .fund-card .token-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;padding: 0 0.5rem ;
   /* border-top: dashed 1px #C8B8B8; */

}

.fund-emerging-section .fund-card .token-box .token-icon {
    width: 2rem;
    height: 2rem; 
    border: 1px solid #dcdcdc;    border-radius: 50%;     display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.fund-emerging-section .fund-card .token-box .token-icon img{    max-height: 1.2rem;}
.fund-emerging-section .fund-card .token-box .token-text .token-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  color: var(--BlackColor); line-height: normal;
}

.fund-emerging-section .fund-card .token-box .token-text .token-subtitle {
  font-size: 0.7rem;
  color: #626262;line-height: normal;

}

.fund-emerging-section .fund-card .ownership-section{display: flex; justify-content: space-between; align-items: center;}

.fund-emerging-section .fund-card .card-action-bar {
    display: flex;
    gap: 1rem; align-items: center;    justify-content: space-between;
  padding: 1rem ;
    border-top: dashed 1px #C8B8B8;
}

.fund-emerging-section .fund-card .card-action-bar .action-item {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff; color: var(--BlackColor);
    position: relative;
    transition: all 0.25s ease;
}

.fund-emerging-section .fund-card .card-action-bar .icon-bx{    display: flex;
    align-items: center;
    gap: 0.5rem;}
.fund-emerging-section .fund-card .card-action-bar .action-item svg {
  width: 1rem;
}

.fund-emerging-section .fund-card .card-action-bar .action-item:hover {
    border-color: var(--PrimaryColor);
    background: #fff;
}
.fund-emerging-section .fund-card .card-action-bar .action-item:hover svg{
   color: var(--PrimaryColor);
} 



/* Tooltip */
.fund-emerging-section .fund-card .card-action-bar .tooltip-wrap .tooltip-text {
     position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    font-size: 0.7rem;
    padding: 4px 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.fund-emerging-section .fund-card .card-action-bar .tooltip-wrap .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--PrimaryColor) transparent transparent transparent;
}

.fund-emerging-section .fund-card .card-action-bar .tooltip-wrap:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}



/* Parent Card */
.project-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #DDDDDD;
}

/* Top Image */
.project-card  .project-card-top {
  position: relative;

}

/* Left Badge Icon */
.project-card  .project-icon-badge {
  position: absolute;
  left: 1rem;
  bottom: -1.5rem;
  width: 3.2rem;
  height: 3.2rem;
  background: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;

}

.project-card  .project-icon-badge img {
  width: 2rem;
}

/* Card Body */
.project-card  .project-card-body {
  padding: 2.2rem 1rem 1rem;
}

.project-card  .project-title {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: normal;
    color: var(--BlackColor);

}

.project-card  .project-desc {
    font-size: 0.9rem;
    color: #707070;
    margin-bottom: 0;    display: -webkit-box;
   
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 67px;
}

/* Footer */
.project-card  .project-card-footer {
  border-top: 1px dashed #C8B8B8;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.project-card  .project-value {
  font-size: 1.3rem;
  font-weight: 500; line-height: normal;
  color: var(--BlackColor); 
}
.project-card  .project-value .price-logo{display: inline-block; margin-right: 2px; top: -5px; position: relative;
}
/* Token Badge */
.project-card  .token-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;


}
.project-card .token-icon {
    width: 1.8rem;
    height: 1.8rem;
    border: 7px solid #000;
    background: #fff;
}
.project-card  .token-title {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03rem; line-height: normal;
    color: var(--BlackColor);
}
.project-card .token-subtitle {
    font-size: 0.7rem;
    color: #626262;line-height: normal;

}
.project-card .section-bottom-btn .btn {    padding: 0.5rem 1rem;    font-size: 0.9rem;}

.inner-section .same-heading h2{    letter-spacing: -0.025em;
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2;
    color: var(--BlackColor);
    margin-bottom: 1rem;}


     .dr-accordion .accordion-item {
      border: 1px solid #CCCCCC;
      border-radius: 0;
      overflow: hidden;
      background: #fff;
      margin-bottom: 0.9rem;
    }

    .dr-accordion .accordion-button {
      font-size: 1.2rem;
      padding: 1rem 1.1rem; font-weight: 600;
      color: var(--BlackColor); border-radius: 0;
    }

     .dr-accordion   .accordion-button:not(.collapsed){background: none; box-shadow: none;}
     .dr-accordion   .dr-doc-card{ background: #fff;
      border: 0.06rem solid #efefef;
      border-radius: 0.35rem;
      padding: 1.5rem;
  height: 100%;
      position: relative;
    }

    .dr-accordion   .dr-doc-card .dr-doc-thumb{color: var(--PrimaryColor);}
    .dr-accordion   .dr-doc-card .dr-doc-source{    color: #757575;
    font-size: 0.8rem;
    line-height: 1.1;
    margin: 0.6rem 0 0.5rem;}
   .dr-accordion  .dr-doc-card .dr-doc-lock  {display: none;}
   .dr-accordion  .lock-card-row .dr-doc-card .dr-doc-lock  {display: block;}

    .dr-accordion   .dr-doc-card .dr-doc-title{color: #343131; font-size: 1rem; font-weight: 500;line-height: 1.5;}
    .dr-accordion   .dr-doc-card .dr-doc-download{color:var(--BlackColor); font-size: 1rem; font-weight: 500;line-height: 1.1; }
    .dr-accordion   .dr-doc-card .download-view-icon{ display: flex; align-items: center; justify-content: end; gap: 1rem;}
    .dr-accordion   .dr-doc-card .download-view-icon svg{width: 1.2rem;}
    .dr-accordion   .lock-card-row .dr-doc-card  .dr-doc-lock {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff96; cursor: pointer;
}

   .dr-accordion  .lock-card-row .dr-doc-card  {  filter: grayscale(100%); opacity: 0.7;}


      .dr-accordion  .accordion-collapse{border-top: 1px solid #CCCCCC; padding: 1rem;}

      .investment-terms-section .same-heading .primary-text{    font-size: 1.3rem;}
      .investment-terms-section .same-heading p{    font-size: 1.2rem;}



      
.video-grid .filter-video{display: flex; align-items: center; justify-content: space-between; padding-bottom: 2rem;}
.video-grid .filter-video .video-results-title{font-size: 0.9rem; font-weight: 600; color: var(--BlackColor);}
.video-grid .filter-video .video-results-title p{margin-bottom: 0;}
.video-grid .filter-video .sortListBx{display: flex; align-items: center; gap:1rem;}
.video-grid .filter-video .sortListBx p{font-size: 0.9rem; color: #7D7D7D; font-weight: 500; margin-bottom: 0;    white-space: pre;}
.video-grid .filter-video .date-sort{display: flex; align-items: center; gap:0.5rem;}
.training-video-bx{margin-bottom: 3rem;}
.training-video-bx .video-thumbnail { border-radius: 10px; overflow: hidden; position: relative; height: 260px; border: 1px solid #ccc;  transition: all .2s ease;}
.training-video-bx .video-thumbnail img { filter: grayscale(1); -webkit-filter: grayscale(1); width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover;  max-width: 100%;}
.training-video-bx .video-thumbnail:hover img{filter: inherit; -webkit-filter: inherit;}
.training-video-bx  .video-play { display: inline-flex; align-items: center; justify-content: center; height: 35px; width: 35px; text-align: center; line-height: normal; background: var(--PrimaryColor); border-radius: 100%; color: #7f7f7f; font-size: 13px; box-shadow: 0 0 0 7px rgba(255,255,255,.35); -webkit-box-shadow: 0 0 0 7px rgba(255,255,255,.35); transition: .2s ease-out; -webkit-transition: .2s ease-out; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); cursor: pointer; }
.training-video-bx  .video-play svg { color: var(--WhiteColor); width: 20px;}
.training-video-bx h3 { font-size: 1.2rem; color: #000; font-weight: 500; margin-top: 15px; line-height: 1.4;}

.digital-event-videosection .training-video-bx .video-thumbnail img {object-fit: contain;}
.video-modal-dialog .modal-content { border-width: 0.4375rem; /* 7px */ border-style: solid; border-color: var(--WhiteColor); border-image: initial; }
.video-modal-dialog .close { position: absolute; width: 1.875rem; /* 30px */ height: 1.875rem; /* 30px */ z-index: 1; opacity: 1; text-align: center; line-height: 1.875rem; /* 30px */ right: -1.125rem; /* -18px */ top: -1.125rem; /* -18px */ font-size: 1.25rem; /* 20px */ border-radius: 50%; background: var(--WhiteColor); transition: all 0.2s ease 0s; outline: none !important; } 
.video-modal-dialog .btn-close {    position: absolute;
    background: var(--PrimaryColor);
    color: #ffffff;
    z-index: 1;
    opacity: 1;
    text-align: center;
    right: -1.125rem;
    top: -1.125rem;
    font-size: 1rem;
    transition: all 0.2s ease 0s;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;} 
.video-modal-dialog .btn-close svg{  width: 1rem;}
.video-modal-dialog .modal-body { padding: 0; }
.video-player { text-align: center; overflow: hidden; }
.video-modal-dialog video { width: 100%; display: block; }
.modal-backdrop.show { opacity: .8; }



.fund-emerging-section .clearHoldings-card .fund-card{ position: relative; padding: 1rem;}
.fund-emerging-section .clearHoldings-card  .token-box{border: 0; position: absolute; right: 25px; bottom: 25px;}
.fund-emerging-section .clearHoldings-card h4{font-size: 2rem; color:#0E0E0E; font-weight: 400;}
.fund-emerging-section .clearHoldings-card p{font-size: 1rem; color:#343131; font-weight: 400;}
.fund-emerging-section .clearHoldings-card .fund-progress-wrapper{width: 100%; max-width:70%;}
.fund-emerging-section .clearHoldings-card .icon-bx-company img{width: 100%; max-width:40%;}
.fund-emerging-section .clearHoldings-card .icon-bx-company{text-align: center;}
.fund-emerging-section .clearHoldings-card .Pre-Money-content{margin-bottom: 1.5rem;}
.fund-emerging-section .clearHoldings-card .card-action-bar{  border: 0;  padding-bottom: 0;   padding-left: 0;   padding-right: 0;}








/* new design css start  */
:is(.layer-bg, .inner-banner) {position: relative;}

: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;
} 

.search-banner { padding: 4rem 0;     position: relative; }
.search-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;}

.search-banner .input-group { border: solid 1px #DBDBDB; border-radius: 0.625rem; /* was 1rem */ 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; /* was 1rem */ color: var(--BlackColor); font-weight: 600; text-transform: uppercase; width: 100%; max-width: 12.5rem; /* was 20rem */ margin-right: 0.625rem; /* was 1rem */ 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; /* was 0.1rem */ } 
.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; }

.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; } /* was 1rem */
.searchListWrapper .searchtopBx .filterDatebx { justify-content: end; max-width: max-content; width: 100%; margin: 0 0.625rem; } /* was 0 1rem */
.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; /* was 0.1rem */ height: 2.8125rem; /* was 4.5rem */ 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; /* was 0.1rem */ border-radius: 0.625rem; /* was 1rem */ padding: 0 0.625rem; /* was 0 1rem */ 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; /* was 0.1rem */ }
.searchListWrapper .card .cardTitleWithImg .imgBx { border: 0.0625rem solid #cccccc; /* was 0.1rem */ 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; /* was 1rem */ }
.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 { position: relative; overflow: hidden; }
.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: 56.25px; /* was 90px */ } 
.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: 1.125rem;
    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: 4rem; border-top: 1px solid #CBCBCB; padding-top: 2rem; }
.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: 1.25rem;
  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: 1.25rem;
  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;background:var(--WhiteColor); }
.profile-tab-wrapper .nav .nav-item .nav-link.active {border-bottom-color:var(--PrimaryColor); color: var(--PrimaryColor); }
.profile-tab-wrapper .tab-content{background: #F5F5F7; padding: 4rem 0;}
/* .profile-tab-wrapper :is(.organizations-title-box,.certificate-title-box){margin-bottom: 3.1250vw;} */
/* .profile-tab-wrapper :is(.certificate-title-box, .organizations-title-box) h3{font-size: 3rem; color: #282828; font-weight: 600; line-height: normal; margin-bottom: 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;} 
.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;}