.quant-banner {
    background-image: url("../assets/digital-wireframe-partical-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 400px;
}

.quant-banner .row {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width:768px) {
    .quant-banner .row {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (min-width:1200px) {
    .quant-banner .row {
        padding-top: 2.928vw;
        padding-bottom: 2.928vw;
    }
}

/* -------------------------------------------- */

.quant-faq {
    padding: 40px 20px;
    border-radius: 30px;
}

.quant-faq .faqItem {
    padding: 18px;
}

.quant-faq .faqContent {
    padding: 30px 0px;
}

.quant-faq .faqContent ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.quant-faq .faqContent ul li {
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.2;
    font-size: 18px;
    list-style: unset;
}

.quant-faq .faqContent ul li::marker {
    color: #005D61;
}


@media (max-width:768px) {
    .quant-faq {
        padding: 0px 10px 30px;
        border-radius: 30px;
    }

}

@media (min-width:1200px) {
    .quant-faq {
        padding: 2.928vw 1.464vw;
        border-radius: 2.196vw;
    }

    .quant-faq .faqItem {
        padding: 1.318vw;
    }

    .quant-faq .faqContent {
        padding: 2.196vw 0px;
    }

    .quant-faq .faqContent ul {
        padding-left: 1.464vw;
    }

    .quant-faq .faqContent ul li {
        margin-bottom: 0.732vw;
        font-size: 1.318vw;
    }

}






/* -------------------------------------------------------------------- */


.chart-wrap {
}

svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.bar {
    transform-box: fill-box;
    transform-origin: bottom center;
    animation: barGrow 1.2s cubic-bezier(.22, 1, .36, 1) forwards;
    transform: scaleY(0);
    opacity: 0;
}

@keyframes barGrow {
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.dash {
    stroke-dasharray: 3 3;
    stroke-dashoffset: 120;
    animation: dashReveal 1s ease forwards;
    opacity: 0;
}

@keyframes dashReveal {
    to {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.label {
    fill: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    opacity: 0;
    transform: translateY(10px);
    animation: textReveal .7s ease forwards;
    max-width: 200px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* STAGGER */
.delay-1 {
    animation-delay: .05s
}

.delay-2 {
    animation-delay: .1s
}

.delay-3 {
    animation-delay: .15s
}

.delay-4 {
    animation-delay: .2s
}

.delay-5 {
    animation-delay: .25s
}

.delay-6 {
    animation-delay: .3s
}

.delay-7 {
    animation-delay: .35s
}

.delay-8 {
    animation-delay: .4s
}

.delay-9 {
    animation-delay: .45s
}

.delay-10 {
    animation-delay: .5s
}

.delay-11 {
    animation-delay: .55s
}

.delay-12 {
    animation-delay: .6s
}

.delay-13 {
    animation-delay: .65s
}

.delay-14 {
    animation-delay: .7s
}

.delay-15 {
    animation-delay: .75s
}

.delay-16 {
    animation-delay: .8s
}

.delay-17 {
    animation-delay: .85s
}

.delay-18 {
    animation-delay: .9s
}

.delay-19 {
    animation-delay: .95s
}

.delay-20 {
    animation-delay: 1s
}

.delay-21 {
    animation-delay: 1.05s
}

.delay-22 {
    animation-delay: 1.1s
}

.delay-23 {
    animation-delay: 1.15s
}

.delay-24 {
    animation-delay: 1.2s
}

.delay-25 {
    animation-delay: 1.25s
}

.delay-26 {
    animation-delay: 1.3s
}

.delay-27 {
    animation-delay: 1.35s
}

.delay-28 {
    animation-delay: 1.4s
}

.delay-29 {
    animation-delay: 1.45s
}

.delay-30 {
    animation-delay: 1.5s
}









/* --------------------------------------- */


.qc-wrap {
    position: relative;
}

.qc-row {
    padding: 15px 0;
}

.qc-row:first-child {
    padding-top: 0;
}

.qc-row:last-child {
    padding-bottom: 0;
}

.qc-head {
    padding-bottom: 8px;
}

.qc-label {
    font-size: .8rem;
    letter-spacing: .18em;
    color: #9aa0a6;
}

.qc-row {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #e9eaee;
}

.qc-right {
    padding-right: 50px;
    text-align: right;
}

.qc-left {
    padding-left: 50px;
    text-align: left;
}

.qc-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
}

.qc-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 18px rgba(255, 255, 255, .7);
    transform: translate(-50%, -50%);
    transition: top .5s cubic-bezier(.65, .05, .36, 1);
}

@media (max-width:768px) {

    .qc-row {
        padding: 10px 0;
    }

    .qc-row {
        font-size: 1rem;
    }

    .qc-right {
        padding-right: 30px;
    }

    .qc-left {
        padding-left: 30px;
    }

    .qc-line {
        width: 1px;
    }

    .qc-dot {
        width: 10px;
        height: 10px;
    }


}

@media (max-width:576px) {
    .qc-right {
        padding-right: 20px;
    }

    .qc-left {
        padding-left: 20px;
    }
}

@media (min-width:1200px) {
    .qc-row {
        padding: 1.098vw 0;
    }

    .qc-head {
        padding-bottom: 0.586vw;
    }

    .qc-label {
        font-size: 0.878vw;
    }

    .qc-row {
        font-size: 1.318vw;
    }

    .qc-right {
        padding-right: 3.66vw;
    }

    .qc-left {
        padding-left: 3.66vw;
    }

    .qc-line {
        width: 0.146vw;
    }

    .qc-dot {
        width: 1.025vw;
        height: 1.025vw;
    }
}



/* ----------------------------------------------------- */
.quant-slide {
    background: #1d1d1d;
    border-radius: 25px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

@media (max-width:768px) {
    .quant-slide {
        padding: 15px;
    }
}

.quantSwiper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.quantSwiper .swiper-slide p {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
    opacity: 0.95;
}

.quant-swiper-controls {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
}

.quant-swiper-prev,
.quant-swiper-next {
    position: relative;
    color: #fff;
    margin: 0;
    cursor: pointer;
}

.quant-swiper-prev::after,
.quant-swiper-next::after {
    font-size: 14px;
    font-weight: 700;
    font-family: swiper-icons;
}

.quant-swiper-prev::after {
    content: '\276E';
}

.quant-swiper-next::after {
    content: '\276F';
}

.quant-swiper-pagination {
    position: relative;
    width: auto !important;
    padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quant-swiper-pagination .swiper-pagination-bullet {
    width: 35px;
    height: 4px;
    border-radius: 20px;
    background: #4b4b4b;
    opacity: 1;
    margin: 0 !important;
    transition: 0.4s ease;
}

.quant-swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 40px;
}

@media (min-width:1200px) {

    .quant-slide {
        border-radius: 1.83vw;
        padding: 1.83vw;
    }

    .quantSwiper .swiper-slide p {
        font-size: 1.464vw;
    }

    .quant-swiper-controls {
        gap: 1.318vw;
        margin-top: 2.928vw;
    }

    .quant-swiper-prev::after,
    .quant-swiper-next::after {
        font-size: 1.025vw;
    }

    .quant-swiper-pagination {
        gap: 0.732vw;
    }

    .quant-swiper-pagination .swiper-pagination-bullet {
        width: 2.562vw;
        height: 0.293vw;
        border-radius: 1.464vw;
    }

    .quant-swiper-pagination .swiper-pagination-bullet-active {
        width: 2.928vw;
    }
}

/* --------------------------------------------------------------------- */



.chart-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
}

.base-donut {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    margin: 5px;
    background:

        radial-gradient(closest-side,
            #000000 58%,
            transparent 59%),

        radial-gradient(circle,
            rgba(184, 184, 184, 0.85) 0%,
            rgba(120, 120, 120, 0.7) 35%,
            rgba(35, 35, 35, 1) 65%,
            rgba(5, 5, 5, 1) 100%);

    box-shadow:
        inset 0 0 25px rgba(0, 0, 0, 0.12),
        inset 0 0 40px rgba(0, 0, 0, 0.9),
        0 0 8px rgba(255, 255, 255, 0.08);
}

.progress-donut {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transform: rotate(-90deg);
    background:
        radial-gradient(circle,
            #00f7ff 0%,
            #005D61 100%);
    -webkit-mask:
        radial-gradient(closest-side,
            transparent 52%,
            black 53%),
        conic-gradient(black 0deg var(--progress),
            transparent var(--progress) 360deg);

    -webkit-mask-composite: source-in;
    mask:
        radial-gradient(closest-side,
            transparent 52%,
            black 53%),
        conic-gradient(black 0deg var(--progress),
            transparent var(--progress) 360deg);
    mask-composite: intersect;
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.18),
        inset 0 0 35px rgba(0, 0, 0, 0.65),
        0 0 10px rgba(0, 255, 230, 0.18);
}

.progress-donut.second {
    background:
        radial-gradient(circle,
            #00f7ff 0%,
            #005D61 100%);

    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.18),
        inset 0 0 35px rgba(0, 0, 0, 0.65),
        0 0 10px rgba(255, 120, 0, 0.3);
}

.value-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-wrap: wrap;
    width: 40%;
    text-align: center;
    margin: 0 auto;
}

.value-number {
    position: absolute;
    inset: 0;
    display: flex;
    color: #ffffff;
}

.value-box {
    position: absolute;
    display: flex;
    color: #ffffff;
    background: #005D61;
    padding: 2px 12px;
    border-radius: 12px;
    bottom: -10%;
}

.value-left {
    left: -10%;
}

.value-right {
    right: -10%;
}


.aum-labels .label-item {
    position: relative;
    padding: 10px 0px;
}

.aum-labels .label-item::before {
    content: "";
    position: absolute;
    left: -30%;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.aum-labels .total-aum::before {
    background: #2F2D2E;
}

.aum-labels .quant-aum::before {
    background: linear-gradient(to bottom,
            #005E62 0%,
            #00f7ff 100%);
}



@media (min-width:1200px) {

    .donut-chart {
        gap: 2.928vw !important;
    }

    .chart-wrapper {
        width: 19.034vw;
        height: 19.034vw;
    }

    .base-donut {
        margin: 0.366vw;
        box-shadow:
            inset 0 0 1.83vw rgba(0, 0, 0, 0.12),
            inset 0 0 2.928vw rgba(0, 0, 0, 0.9),
            0 0 0.586vw rgba(255, 255, 255, 0.08);
    }

    .progress-donut {
        box-shadow:
            inset 0 0 1.464vw rgba(255, 255, 255, 0.18),
            inset 0 0 2.562vw rgba(0, 0, 0, 0.65),
            0 0 0.732vw rgba(0, 255, 230, 0.18);
    }

    .progress-donut.second {
        box-shadow:
            inset 0 0 1.464vw rgba(255, 255, 255, 0.18),
            inset 0 0 2.562vw rgba(0, 0, 0, 0.65),
            0 0 0.732vw rgba(255, 120, 0, 0.3);
    }

    .value-box {
        padding: 0.146vw 0.878vw;
        border-radius: 0.878vw;
    }

    .aum-labels {
        gap: 3.66vw !important;
    }

    .aum-labels .label-item {
        position: relative;
        padding: 0.732vw 0px;
    }

    .aum-labels .label-item::before {
        width: 1.464vw;
        height: 1.464vw;
    }
}

/* ------------------------------------------------------------------ */


.quant-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 14px;
}

.quant-table thead th {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px 22px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quant-table thead th:first-child {
    border-radius: 14px 0 0 14px;
}

.quant-table thead th:last-child {
    border-radius: 0 14px 14px 0;
}

.quant-table tbody tr {
    background: #1a1a1a;
    transition: 0.3s ease;
}

.quant-table td {
    padding: 10px 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
}

.quant-table td:first-child {
    border-radius: 14px 0 0 14px;
    color: #ffffff;
}

.quant-table td:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0 14px 14px 0;
}

.quant-note {
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    line-height: 1.8;
    font-size: 14px;
}

@media (max-width: 768px) {

    .quant-table {
        border-spacing: 0;
    }

    .quant-table thead {
        display: none;
    }

    .quant-table,
    .quant-table tbody,
    .quant-table tr,
    .quant-table td {
        display: block;
        width: 100%;
    }

    .quant-table tr {
        margin-bottom: 16px;
        border-radius: 16px;
        overflow: hidden;
        background: #111111;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .quant-table td {
        text-align: right;
        padding: 16px 18px 16px 40%;
        position: relative;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .quant-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 18px;
        top: 16px;
        color: #ffffff;
        font-weight: 600;
        text-align: left;
    }

    .quant-table td:last-child {
        border-bottom: 0;
    }

    .quant-note {
        font-size: 14px;
        padding: 16px;
    }

    .quant-table td:first-child {
        border-radius: 0;
        color: #ffffff;
    }
}

@media (min-width:1200px) {
    .quant-table {
        border-spacing: 0 1.025vw;
    }

    .quant-table thead th {
        padding: 0.732vw 1.611vw;
        font-size: 1.171vw;
        letter-spacing: 1px;
    }

    .quant-table thead th:first-child {
        border-radius: 1.025vw 0 0 1.025vw;
    }

    .quant-table thead th:last-child {
        border-radius: 0 1.025vw 1.025vw 0;
    }

    .quant-table td {
        padding: 0.732vw 1.611vw;
        color: rgba(255, 255, 255, 0.88);
        font-size: 1.171vw;
    }

    .quant-table td:first-child {
        border-radius: 1.025vw 0 0 1.025vw;
        color: #ffffff;
    }

    .quant-table td:last-child {
        border-right: 1px solid rgba(255, 255, 255, 0.04);
        border-radius: 0 1.025vw 1.025vw 0;
    }

    .quant-note {
        font-size: 1.025vw;
    }

}


/* ----------------------------------------------------------------------------- */

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ===== TABLE ===== */
.performance-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 14px;
}

/* ===== HEADER ===== */
.performance-table thead th {
    color: #d6d6d6;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 12px 10px;
    white-space: nowrap;
}

.performance-table thead th:first-child {
    text-align: left;
    padding-left: 22px;
}

.performance-table thead th {
    background-color: #181818;
}

.performance-table thead th:first-child {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.performance-table thead th:last-child {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

/* ===== ROW DESIGN ===== */
.performance-table tbody tr {
    background: #181818;
    border-radius: 50px;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, .25),
        inset 0 1px 0 rgba(255, 255, 255, .03);
}

.performance-table tbody td {
    padding: 10px 4px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    border: none;
    transition: .25s;
    position: relative;
}

.performance-table tbody td:not(:first-child):hover {
    transform: scale(1.04);
    z-index: 5;
}

/* ===== INDEX COLUMN ===== */
.performance-table tbody td:first-child {
    text-align: left;
    padding-left: 22px;
    min-width: 180px;
    background: #22252d;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    color: #d8d8d8;
}

.performance-table tbody td:last-child {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}


@media(max-width:768px) {

    .performance-table {
        min-width: 100%;
        border-spacing: 0 12px;
    }

    .performance-table thead {
        display: none;
    }

    .performance-table,
    .performance-table tbody,
    .performance-table tr,
    .performance-table td {
        display: block;
        width: 100%;
    }

    .performance-table tr {
        margin-bottom: 18px;
        border-radius: 20px !important;
        overflow: hidden;
    }

    .performance-table td {
        text-align: right !important;
        padding: 10px 15px !important;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .performance-table td:last-child {
        border-bottom: none;
    }

    .performance-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        color: #d5d5d5;
    }

    .performance-table tbody td:first-child {
        border-radius: 0;
        background: #16191f;
        text-align: left;
        font-size: 16px;
    }

    .performance-table tbody td:first-child::before {
        display: none;
    }


    .performance-table tbody td:last-child {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;

    }

    .performance-table tbody td.note-row {
        text-align: center !important;
    }

    .performance-table tbody td.note-row::before {
        display: none;
    }
}


@media (min-width:1200px) {
    .performance-table {
        border-spacing: 0 1.025vw;
    }

    .performance-table thead th {
        font-size: 0.952vw;
        padding: 0.878vw 0.732vw;
    }

    .performance-table thead th:first-child {
        padding-left: 1.611vw;
    }

    .performance-table thead th:first-child {
        border-top-left-radius: 3.66vw;
        border-bottom-left-radius: 3.66vw;
    }

    .performance-table thead th:last-child {
        border-top-right-radius: 3.66vw;
        border-bottom-right-radius: 3.66vw;
    }

    .performance-table tbody tr {
        border-radius: 3.66vw;
        box-shadow:
            0 0.293vw 0.878vw rgba(0, 0, 0, .25),
            inset 0 0.073vw 0 rgba(255, 255, 255, .03);
    }

    .performance-table tbody td {
        padding: 0.732vw 0.293vw;
        font-size: 1.025vw;
    }

    .performance-table tbody td:first-child {
        padding-left: 1.611vw;
        min-width: 13.177vw;
        border-top-left-radius: 3.66vw;
        border-bottom-left-radius: 3.66vw;
    }

    .performance-table tbody td:last-child {
        border-top-right-radius: 3.66vw;
        border-bottom-right-radius: 3.66vw;
    }
}


/* ===== NOTE ROWS ===== */

.note-row {
    background: #2c2c2c !important;
    color: #d9d9d9 !important;
    text-align: center !important;
    padding: 10px 15px !important;
    border-radius: 50px;
    font-size: 14px !important;
    font-weight: 300 !important;
    letter-spacing: .2px !important;
}

.performance-table tbody tr:has(.note-row) {
    background: transparent;
    box-shadow: none;
}

.performance-table tbody tr:has(.note-row) td {
    border-radius: 50px;
}


.performance-table tbody tr:has(.note-row) td:hover {
    transform: none !important;
    z-index: auto;
}

@media(max-width:768px) {
    .performance-table tbody tr:has(.note-row) td {
        border-radius: 20px;
    }

}


@media (min-width:1200px) {

    .note-row {
        padding: 0.732vw 0.928vw !important;
        border-radius: 3.66vw !important;
        font-size: 1.025vw !important;
        letter-spacing: .2px !important;
    }

    .performance-table tbody tr:has(.note-row) td {
        border-radius: 3.66vw !important;
    }

}


/* =========================================*/
.high-pos {
    background: #005D61;
    color: #ffffff;
}

.mid-pos {
    background: #0A777B;
    color: #ffffff;
}

.low-pos {
    background: #169297;
    color: #ffffff;
}

.neutral {
    background: #33AEB2;
    color: #ffffff;
}
/* =========================================*/

.neg-low {
    background: #4A4A4A;
    color: #ffffff;
}

.neg-mid {
    background: #5E5E5E;
    color: #ffffff;
}

.neg-high {
    background: #777777;
    color: #ffffff;
}

.neg-extreme {
    background: #919191;
    color: #ffffff;
}