:root {
    --PrimaryColor: #091F56;
    --SecondayColor: #FFC400;
    --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: "Plus Jakarta Sans", 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: 0.9rem;
        padding: 0.5rem 1.3rem;
        border-radius: 10px;
        line-height: 1.25rem;
        font-weight: 500;
        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-secondary {
    color:var(--BlackColor);
    background: var(--SecondayColor);
    border-color: var(--SecondayColor);
}


.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
   color: var(--SecondayColor) !important;
    background: var(--WhiteColor)!important;
    border-color: var(--SecondayColor)!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: var(--PrimaryColor);
    font-size: 2.3rem;
    font-weight: 600;
    line-height:1.2; 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: #524E4E;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 2;
}
.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: #F9F9F9;}

.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;}
.learn-more-btn{color:var(--SecondayColor); font-size: 1rem; font-weight: 600;}
.gradient-img-bx{position: relative;}
.gradient-img-bx:before{    position: absolute;
    left: 0;
    height: 120px;
    width: 100%;
    background: linear-gradient(to top, #ffffff, #00000000);
    bottom: 0;
    content: '';}


@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header  {padding: 1rem 0; background: transparent; position: relative;   transform: translateZ(0); transition: all 0.5s;  z-index:999;}

.header .header-actions{display: flex; align-items: center; justify-content: end; gap: 1rem; } 

.header.header-fixed { background: var(--WhiteColor);
   position: fixed; top: 0; left: 0;right: 0; box-shadow:0 2px 6px rgba(0,0,0,0.2); animation:headerfixdown 0.7s;}

.header.header-fixed .logo img{max-height: 50px; display: block;}

@keyframes headerfixdown {
    0% {
    opacity: 0;
    transform: translateY(-100%);
} 
100% {
    opacity: 0.9;
    transform: translateY(0);
    } 
}



/* LANGUAGE SWITCH */
.lang-switch {
  display: inline-flex;
  border: 0.0625rem solid #ECECEC;
  border-radius: 3px;
  overflow: hidden;
}


.lang-switch .lang-checkbox {
    display: none;
}

.lang-switch .lang-btn {
  background-color: transparent;
  border: none; border-right: solid 1px #ECECEC;
  padding: 0.2rem 0.4rem;
  font-size: 0.7rem;
  cursor: pointer;
  color: #C7C7C7;   
   display: inline-block;
}

.lang-switch .lang-btn.active {
  background-color: #fff;
  color: var(--SecondayColor);
}

.header .header-actions .search-icon{color: var(--BlackColor);}

.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{background: url(../images/banner-bg.jpg)no-repeat center bottom/cover; position: relative; margin-top: -6rem; padding: 9rem 1rem 0 1rem; display: flex; flex-direction: column; justify-content: space-between;}
.hero-banner h1{color: var(--BlackColor); font-size: 2.6rem; font-weight: 600; margin-bottom: 1rem;}
.hero-banner p{color: var(--BlackColor); font-size: 1rem;line-height: 1.7;}
.hero-banner .section-bottom-btn{margin-top: 2rem;}
.hero-banner .section-bottom-btn .btn-primary{background: var(--WhiteColor); color: var(--PrimaryColor); border-color: var(--WhiteColor); padding: 0.7rem 1.3rem; }
.hero-banner .banner-img-bx{width: 100%; max-width: 66vw; margin: auto;}
.hero-banner:before{width: 100%; height: 12rem; background: linear-gradient(to top, #fff, transparent); position: absolute; left: 0; right: 0; bottom: 0; content: ''; }



.system-section{background: var(--PrimaryColor); margin-top: -3rem;z-index: 99;position: relative; padding: 7rem 0;}
.system-section .same-heading p{    font-size: 1.1rem;
    line-height: 1.6;}
.system-section  .check-icon-list li{color: var(--WhiteColor); font-weight: 400;}

.check-icon-list li{ font-size: 0.9rem;line-height: 1.6; font-weight: 500;  padding: 0.7rem 0rem 0.7rem 2.3rem;  color: var(--BlackColor); position: relative;}
.check-icon-list li .check-icon{position: absolute; left: 0; top: 0.6rem; width: 1.5rem; height: 1.5rem; text-align: center;  border-radius: 50%; background: #ffc4003e; color: var(--SecondayColor);  display: inline-flex; align-items: center; justify-content: center;}
.check-icon-list li .check-icon svg{width: 1rem; }



.built-section .built-card{  background-color: var(--WhiteColor);
  border-radius: 0.75rem;
  padding: 2rem ;
  text-align: center;
  border: 0.0625rem solid #E9E9E9;}

  .built-section .built-card p{font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--BlackColor);}

  
  .built-section .built-card .built-icon{width: 3rem;
  height: 3rem;
  margin: 0 auto 1.5rem;
  border-radius: 0.75rem;
  background-color: #ffc4000d; color: var(--SecondayColor);
  display: flex;
  align-items: center;
  justify-content: center;}

  .built-section .same-heading .max-wid-80{width: 100%; max-width: 75%;}





.identity-section {background: #F9F9F9;}
.identity-section .same-heading h2{font-size: 3.6rem;}
.identity-section .same-heading h2 span{color: var(--SecondayColor);}
.identity-section .identity-card {background: var(--WhiteColor); border-radius: 0.75rem; padding: 1.5rem;text-align: left; border: 0.0625rem solid var(--WhiteColor);}
.identity-section .identity-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: var(--BlackColor);
}

.identity-section .identity-card p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #4E4E4E;
  margin-bottom: 0;
}

/* ICON */
.identity-section .identity-card svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffc107;
}



.dvse-section{background: var(--PrimaryColor);}
.dvse-section .same-heading{margin-bottom: 2.6rem;}
.dvse-section .same-heading .primary-text{color: var(--SecondayColor); font-size: 0.7rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 4px;}
.dvse-section .same-heading{background: var(--PrimaryColor);}
.dvse-section .dvse-list {display: flex; align-items: center; justify-content: center; width: 100%; max-width:70%; margin: auto;}
.dvse-section .dvse-list li{width: 30%; color: var(--WhiteColor);     font-size: 0.9rem; font-weight: 400;    padding: 0.5rem 3rem; }
.dvse-section .dvse-list li:nth-child(2){border-left: solid 1px #1F4091; border-right: solid 1px #1F4091;}
.dvse-section .middle-img-bx{text-align: center; width: 100%; max-width: 300px; margin: 3rem auto 1rem;}
.dvse-section .bottom-text{color: var(--SecondayColor);  margin: auto; text-align: center;     font-size: 0.9rem; line-height: 2;    font-weight: 400;}




/* LIST */
.assets-section .assets-list {border-top: 0.0625rem solid #E5E5E5;}

.assets-section .asset-item {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 0.0625rem solid #E5E5E5;
  gap: 1rem;
}

.assets-section .asset-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 9rem;
}

.assets-section .asset-name {
  font-size: 1.5rem;
  color: #868686;
}

/* ICONS */
.assets-section .asset-icon {
  width: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* DESCRIPTION */
.assets-section .asset-desc {
  font-size: 1.1rem;
  color:var(--BlackColor);
 font-weight: 400;

}

/* NOTE */
.assets-note {
  font-size: 0.9rem;
  color: #B8B8B8; font-style: italic;
  margin-top: 2.3rem;
}



.dignity-wrapper .legacy-card{background: var(--WhiteColor); padding: 2rem; border-radius: 20px;}
.dignity-wrapper  .legacy-card .assets-note{color: var(--SecondayColor);}
.dignity-wrapper .legacy-card h2{font-size: 1.8rem;}
.dignity-wrapper .legacy-list li{  counter-increment: legacy;
  background: #F5F8FF;
  border-radius: 10px; 
  padding: 0.75rem 1rem 0.75rem 3rem;
  font-size: 0.9rem; font-weight: 500;
  margin-bottom: 5px;
  position: relative;
  color: var(--PrimaryColor);}

.dignity-wrapper .legacy-list li::before {
  content: counter(legacy, decimal-leading-zero);
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: #B1B1B1;
}

.voting-wrapper .same-heading p{width: 100%;     max-width: 37%;}

/* TIMELINE */
.vl-start-wrapper .vl-timeline {
  display: flex;
  justify-content: center;
  align-items: center;
 position: relative;
 margin: 4rem 0 3rem;
}

/* STEP */
.vl-start-wrapper .vl-step {
  width: 16%;
  display: flex;
  flex-direction: column;
  align-items: center;    min-height: 183px;
    justify-content: flex-start;
}

/* TEXT */
.vl-start-wrapper .vl-text {
  font-size: 0.8rem;
  line-height: 1.4; font-weight: 400;
  color: var(--BlackColor);
  text-align: center;
  max-width: 11rem; margin-bottom: 0; min-height: 53px;
}

/* DOT */
.vl-start-wrapper .vl-dot {
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--SecondayColor);
  border-radius: 50%; z-index: 2;
}



/* DOTTED CONNECTOR */
.vl-start-wrapper .vl-connector {
  width: 0.0625rem;
  height: 2rem;
  border-left: 0.12rem dotted var(--BlackColor);
}

/* TOP / BOTTOM ORDER */
.vl-start-wrapper .vl-step.top {
  flex-direction: column-reverse;
}



/* HORIZONTAL LINE */
.vl-start-wrapper .vl-horizontal-line {
  height: 0.0625rem;
  background-color: #cfd8e3; width: 100%;
  position: absolute; top: 50%; transform: translateY(-50%); 
}

/* .vl-start-wrapper .participate-step{    position: relative;
    top: -18px;} */


.footer { background-color: #091F56;color: #ffffff;}
.footer  .footer-top{  padding: 4rem 0 3rem;}
.footer-logo img {
  max-width: 10rem;
  margin-bottom: 1.5rem;
}

.footer .footer-text {
  font-size:1rem;
  line-height: 1.6;
  max-width: 40rem; font-style: italic;
  margin: 0 auto 1.25rem;
  color: #fff;
}

.footer .footer-support {
  font-size: 0.8rem;
  color: #ffffff73; margin-bottom: 0; padding-top: 1rem; letter-spacing: 2px;
}


.footer .footer-bottom {
  border-top: solid 1px #ffffff40;
  padding: 0.9rem 0;
}

.footer .footer-links li{display: inline-flex;}
.footer .footer-links a {
  color: #fff;
  font-size: 0.75rem; letter-spacing: 1px;
  padding: 0 0.6rem; border-right: solid 1px #fff;
}
.footer .footer-links li:last-child a{border: 0;}
.footer .footer-links li:first-child a{padding-left: 0;}
.footer .footer-copy{color: #fff;
  font-size: 0.75rem; text-align: right;}










  



/* 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; line-height: normal; ; font-weight: 400; color: var(--BlackColor); } 
.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: 500; 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: 1.2rem; 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: 1.2rem; }
.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: 1.2rem; } 
.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 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 .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; }


.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; 
  font-size: 0.875rem;
}




.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: 400; 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;}