@import url('styles.css');

.pms-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 120px;
}

.hero-section {
    background: url("../images/pms/pms-header-desktop.png") center/cover no-repeat;
    min-height: 50vh;
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.main {
    width: 1440px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-items: center;
    align-self: center;
    gap: 60px;
    padding: 80px 76px;
}



.hero-section h1 {
    color: var(--Dark-Mode-Main-Text, #E4E9E9);
    font-family: Manrope;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.24px;
}

.hero-section p {
    color: var(--Dark-Mode-Body-Text, #BCC);
    align-self: stretch;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.16px;
    width: 95%;
}


.hero-title {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    align-self: stretch;
}

.info-card {
    display: flex;
    padding: 20px 16px;
    justify-content: space-around;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 16px;
    border: 0.5px solid #307171;
    background: linear-gradient(180deg, rgba(136, 236, 236, 0.12) -57.51%, rgba(0, 53, 56, 0.30) 100%);
    backdrop-filter: blur(7.5px);
    width: 100%;
}

.info-row {
    display: flex;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.info-label {
    color: var(--Dark-Mode-Body-Text, #BCC);

    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.14px;
}

.info-value {
    color: var(--Light-Grey, #F5F5F5);

    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 0.1px;
    text-wrap: nowrap;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 1.4;
    flex-shrink: 0;
    border-radius: 16px;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 16px;
    border: 0.5px solid #307171;
    background: linear-gradient(180deg, rgba(136, 236, 236, 0.12) -57.51%, rgba(0, 53, 56, 0.30) 100%);
    box-shadow: 0 11px 10px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(7.5px);
}

.fund-nav {
    position: sticky;
    width: 100%;
    top: 0;
    border: 1px solid #c5d2cc;
    background: var(--Beige, #F6F7F0);
    padding: 12px 16px;
    margin-top: -120px;
}

.fund-nav-list .nav-link {
    color: var(--Light-Mode-Tertiary-Text, #75999B);

    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.16px;
}

.fund-nav-list .nav-link.active,
.fund-nav-list .nav-link:hover {
    color: var(--Teal, #003134);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 0.16px;
}

.dropdown .btn {
    border: 1px solid #c5d2cc;
    border-radius: 8px;
    background: #f7f8f3;
    font-weight: 500;
    color: #003134;
}

.sticky-bottom-bar {
    position: fixed;
    bottom: -120px;
    /* hidden offscreen by default */
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 28px 76px;
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);

    opacity: 0;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.3, 1);
    /* smooth ease-in-out */
}

/* Visible state with smooth slide-up and fade-in */
.sticky-bottom-bar.active {
    bottom: 0;
    opacity: 1;
    transform: translateY(0);
}


.sticky-bottom-bar .btn-success {
    background: linear-gradient(90deg, #b7e21c, #7cc93d);
    border: none;
    font-weight: 600;
}

.actions {
    width: 35%;
}

.glance-section {
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 1120px;
    min-height: auto;
}

.chart-container,
.card-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    gap: 20px;
}

.chart-container {
    gap: 50px;
    align-self: flex-start;
    min-height: 450px;
}

.glance-card {
    display: flex;
    width: 33%;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-radius: 16px;
    background: var(--Deep-Teal, #003134);
}

.return,
.glance-card h3 {
    color: var(--Neon-Green, #C7EE4E);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 0.1px;
}

.glance-card p {
    color: #BCC;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.16px;
}


.stats {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-header span {
    color: var(--Medum-Grey, #58746E);
    font-family: Manrope;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.12px;
}

.stat-header h3 {
    color: var(--Deep-Teal, #003134);
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.5px;
}

.stat-header {
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 4px;
    border: 0.5px solid #CCC;
    background: var(--Beige, #F6F7F0);
}

.stat-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.stat-item {
    display: flex;
    height: 40px;
    padding: 0 12px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.stat-item span {
    color: var(--Light-Mode-Secondary-Text, #366063);

    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.16px;
}

.stat-item h5 {
    color: var(--Teal, #003134);
    text-align: right;
    margin: 0;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 0.16px;
}


.stat-item {
    border-radius: 5px;
}

.founders-section {
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    min-height: auto;
    background-color: #F6F7F0;
    padding: 60px 0px;
    width: 100%;
}

.founders-note {
    width: 1120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}



.founders-note .card {
    background-color: #F6F7F0;
    border: none;
    display: flex;
    gap: 40px;
}

.founders-note .card-img {
    width: 20vw;
    object-fit: cover;
}



.founders-note h5 {
    color: var(--Teal, #003134);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.founders-note p {
    color: var(--Light-Mode-Secondary-Text, #366063);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.14px;
}

.founders-note span {
    color: var(--Light-Mode-Body-Text, #2B4B4D);
    text-align: justify;

    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.16px;
}

.founders-note a {
    color: #74950E;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.08px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
}

.founder-image-container {
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custodian-section {
    background-color: #003134;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 29px;
    width: 1120px;
    padding: 80px 0;
}

.custodian-section h1 {
    color: var(--Dark-Mode-Main-Text, #E4E9E9);

    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.18px;
}

.custodians {
    display: flex;
    width: 60%;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.custodians h1 {
    font-weight: 700;
    font-size: 2rem;
}

.custodians .top-text {
    color: var(--Dark-Mode-Body-Text, #BCC);
    text-align: justify;

    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.16px;
}

.custodians img {
    width: 100%;
}

.blog-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    justify-content: center;
    gap: 40px;
    align-self: stretch;
    background-color: #FFF;
    width: 100%;
}

.blog-content-section {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 1120px;
}

.blog-content-section h2 {
    color: var(--Deep-Teal, #003134);
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.16px;
}


.blog-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
}

.custom-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
    min-height: 350px;
    padding-bottom: 20px;
    border: none;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.custom-card-img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.custom-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    padding: 16px;
    margin: 0 !important;
    border: 0.5px solid #b3c1c2;
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    flex: 1;
    justify-content: space-between;
}

.custom-card small {
    color: #2B4B4D;
    text-align: justify;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.14px;
}

.custom-card h6 {
    color: #003134;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.1px;
}

.read-more {
    color: #74950E;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.08px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
}

.read-more:hover {
    text-decoration: underline;
}

.faq-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    align-self: center;
    margin-top: 50px;
    align-items: flex-start;
    width: 1120px;
}

.faq {
    width: 80%;
}

.faq-title {
    font-size: 32px;
    text-align: left;
}

.accordion,
.accordion-body,
.accordion-button {
    padding: 16px 0px;
}

.faq-cta-text,
.accordion-button {
    color: #003134;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.1px;
    background: none !important;
    border: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button::after {
    content: "+";
    font-size: 18px;
    font-weight: bold;
    margin-left: auto;
    background-image: none !important;
}

.accordion-button:not(.collapsed)::after {
    content: "-";
    font-size: 18px;
    font-weight: bold;
    margin-left: auto;
    background-image: none !important;
}

.accordion-button:not(.collapsed) {
    color: #003134;
    background: none !important;
    border: 0px !important;
}

.faq-cta-text,
.accordion-body {
    color: var(--Light-Mode-Body-Text, #2B4B4D);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.16px;
    text-align: left;
}

.faq-cta-img {
    width: 120px;
    margin-bottom: 20px;
}

.faq-cta-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.faq-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    width: 1120px;
    gap: 40px;
    border-radius: 16px;
    background: var(--primary-100);
    margin-bottom: 120px;
    align-self: center;
}

.cta-section h2 {
    color: #e4e9e9;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.18px;
}

.cta-section span {
    color: var(--secondary-100);
    font-family: "DM Serif Text";
    font-size: 40px;
    font-style: italic;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.2px;
}

.cta-section p {
    color: #bcc;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.16px;
}

.btn-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #E4E9E9;
    background: linear-gradient(180deg, rgba(214, 214, 214, 0.20) 0%, rgba(0, 49, 52, 0.20) 100%);
    backdrop-filter: blur(3.5px);
    color: #E4E9E9;
    width: 100%;
}

.btn-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    background: linear-gradient(180deg, #F3FBD9 -4.17%, #C7EE4E 14.96%, #85B000 88.25%, #9ACC00 108.33%);
    box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.20);
    width: 100%;
    text-wrap: nowrap;
}

.btn-3 {
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    background: #FFFFFF;
    width: 90%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #003134;
    text-decoration: none;
}

.btn-4 {
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    width: 90%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: linear-gradient(180deg, #C7EE4E 10.42%, #A2D409 101.04%);
    text-decoration: none;
    font-weight: 600;
}

.btn-1:hover {
    background: linear-gradient(180deg, rgba(214, 214, 214, 0.20) 0%, rgba(0, 49, 52, 0.20) 100%);
}

.btn-2:hover {
    color: inherit;
    background: linear-gradient(180deg, #F3FBD9 -4.17%, #C7EE4E 14.96%, #85B000 88.25%, #9ACC00 108.33%);
}

.btn-3:hover {
    background: #FFFFFF;
    border: 1px solid #003134;
    text-decoration: none;
}

.font-style-2 {
    color: var(--Neon-Green, #C7EE4E);
    font-family: "DM Serif Text";
    font-size: 40px;
    font-style: italic;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.2px;
}

[id] {
    scroll-margin-top: 70px;
}
@media (max-width: 768px) {
    .pms-container {
        gap: 80px;
    }

    .hero-section {
        background: url("../images/pms/pms-header-mobile.png") center/cover no-repeat;
    }

    .main {
        flex-direction: column;
        width: 90%;
        padding: 40px 0px;
        gap: 30px;
        margin-bottom: 40px;
    }

    .hero-section h1 {
        color: var(--Dark-Mode-Main-Text, #E4E9E9);
        font-family: Manrope;
        font-size: 32px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        letter-spacing: 0.16px;
    }

    .hero-title {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .info-row {
        width: auto;
    }

    .info-label {
        font-size: 12px;
        letter-spacing: 0.12px;
    }

    .info-value {
        font-size: 16px;
        letter-spacing: 0.16px;
    }

    .glance-section {
        width: 100%;
    }

    .custom-card h6 {
        font-size: 16px;
    }

    .sticky-bottom-bar {
        padding: 0 16px;
        padding-bottom: 24px;
        padding-top: 12px;
    }

    .glance-section .card-container {
        display: flex;
        padding: 0 16px;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        overflow: scroll;
        width: 95%;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .glance-section .card-container::-webkit-scrollbar {
        display: none;
    }

    .glance-card {
        width: 280px;
        height: 336px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .founders-note {
        width: 100%;
        padding: 0 16px;
    }

    .founder-image-container {
        width: 100%;
    }

    .custodian-section,
    .chart-container {
        display: flex;
        flex-direction: column;
        padding: 0 16px;
        align-items: center;
        gap: 16px;
        width: 100%;
        padding: 0 16px;
    }

    .stats {
        width: 100%;

    }

    .blog-content-section {
        width: 343px;
    }

    .blog-content-section h2 {
        color: #003134;
        font-family: Manrope;
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
        /* 38.4px */
        letter-spacing: 0.16px;
    }

    .blog-container {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
        flex-wrap: nowrap;
    }

    .blog-container::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .blog-container>.col-12 {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
    }

    .custodian-section {
        padding: 40px 16px;
    }

    .custodians {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
        width: 100%;
    }

    .actions {
        flex-direction: column;
        width: 100%;
    }

    .faq-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .faq {
        display: flex;
        width: 90%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    .faq-cta {
        width: 90%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .faq-cta-text {
        text-align: center;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        align-self: center;
        gap: 8px;
        padding: 0 16px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #D9D9D9;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        background-color: #003134;
        width: 24px;
        border-radius: 4px;
    }
}

.primary-bg {
    background: var(--primary-5) !important;
}

.grey-color {
    color: #58746E;
}

.dark-color {
    color: #2C3A37;
}

.founders-note .card {
    flex-direction: row;
    align-items: flex-end;
}

.showp {
    display: none;
}

@media only screen and (max-width: 992px) {

    .founders-note .card {
        flex-direction: column;
    }

    .founders-note .card-img {
        width: 100%;
    }

    .cta-section {
        flex-direction: column-reverse;
        align-items: stretch;
        width: 90%;
        padding: 40px 30px;
        gap: 30px;
        margin-bottom: 80px;
    }

    .cta-text {
        order: 1;
        width: 100%;
    }

    .cta-section h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .cta-section span {
        font-size: 36px;
    }

    .cta-section p {
        font-size: 15px;
        margin-bottom: 0;
    }

    .showp {
        display: block;
    }

    .hidep {
        display: none;
    }


}