﻿/*==================================================
    ABOUT PAGE HERO
==================================================*/

.about-page-hero {
    position: relative;
    overflow: hidden;
    padding: 50px 0 0;
    background: linear-gradient(135deg,#101357 0%,#16235d 45%,#0d1148 100%);
}

.about-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(16,19,87,.95) 0%, rgba(16,19,87,.88) 28%, rgba(16,19,87,.40) 55%, rgba(16,19,87,.10) 100%);
    pointer-events: none;
    z-index: 1;
}

.about-page-hero .container {
    position: relative;
    z-index: 2;
}

.about-page-hero-content {
    max-width: 520px;
    padding: 40px 0 70px;
}

.about-page-hero-tag {
    display: inline-block;
    color: #DB1900;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.about-page-hero-title {
    color: #fff;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 600;
    margin-bottom: 28px;
}

.about-page-hero-text {
    color: #d9def7;
    font-size: 18px;
    line-height: 1.9;
    max-width: 470px;
}

.about-page-hero-image {
    position: relative;
    text-align: right;
}

    .about-page-hero-image img {
        max-height: 340px;
        max-width: 520px;
        width: 100%;
        object-fit: contain;
        animation: membershipFloat 6s ease-in-out infinite;
        display: block;
        border-radius: 0;
        transition: .5s;
    }

        .about-page-hero-image img:hover {
            transform: scale(1.02);
        }

/*========================================*/

@media(max-width:1200px) {

    .about-page-hero-title {
        font-size: 50px;
    }

    .about-page-hero-image img {
        height: 560px;
    }
}

@media(max-width:991px) {

    .about-page-hero {
        padding-top: 70px;
        text-align: center;
    }

    .about-page-hero-content {
        margin: auto;
        padding-bottom: 40px;
    }

    .about-page-hero-text {
        margin: auto;
    }

    .about-page-hero-image {
        margin-top: 25px;
    }

        .about-page-hero-image img {
            height: 420px;
            border-radius: 18px 18px 0 0;
        }
}

@media(max-width:767px) {

    .about-page-hero {
        padding-top: 55px;
    }

    .about-page-hero-title {
        font-size: 38px;
    }

    .about-page-hero-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-page-hero-image img {
        height: 280px;
    }
}

/*==================================================
    ABOUT STORY
==================================================*/

.about-page-story {
    padding: 40px 0;
    background: #fff;
}

.about-page-story-content {
    padding-right: 40px;
}

.about-page-section-tag {
    display: inline-block;
    color: #DB1900;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-page-section-title {
    color: #101357;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-page-story-content p {
    color: #6e7488;
    line-height: 1.9;
    margin-bottom: 35px;
    font-size:14px;
}

.about-page-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border: 2px solid #101357;
    color: #101357;
    font-weight: 600;
    text-decoration: none;
    border-radius: 60px;
    transition: .35s;
}

    .about-page-outline-btn:hover {
        background: #101357;
        color: #fff;
    }

.about-page-outline-btn-wht {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 60px;
    transition: .35s;
}

    .about-page-outline-btn-wht:hover {
        background: #fff;
        color: #101357;
    }

.about-page-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.about-page-line {
    position: absolute;
    top: 38px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: #dde2ef;
    z-index: 0;
}

.about-page-timeline-item {
    position: relative;
    z-index: 2;
    flex: 1;
}

.about-page-circle {
    width: 76px;
    height: 76px;
    margin: auto;
    border-radius: 50%;
    background: #f3f5fb;
    border: 2px solid #dce2f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #101357;
    font-size: 30px;
    margin-bottom: 22px;
    transition: .35s;
}

.about-page-timeline-item.active .about-page-circle {
    background: #101357;
    color: #fff;
    border-color: #101357;
}

.about-page-timeline-item:hover .about-page-circle {
    background: #DB1900;
    color: #fff;
    border-color: #DB1900;
    transform: translateY(-6px);
}

.about-page-timeline-item h4 {
    color: #101357;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.about-brand-icons{
    height:90px;
    width:auto;
}
.about-page-timeline-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #162041;
    margin-bottom: 12px;
}

.about-page-timeline-item p {
    color: #6e7488;
    font-size: 14px;
    line-height: 1.6;
    max-width: 170px;
    margin: auto;
}

@media(max-width:991px) {

    .about-page-story {
        text-align: center;
    }

    .about-page-story-content {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .about-page-timeline {
        flex-wrap: wrap;
        gap: 35px;
    }

    .about-page-line {
        display: none;
    }

    .about-page-timeline-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media(max-width:767px) {

    .about-page-section-title {
        font-size: 34px;
    }

    .about-page-timeline {
        display: block;
    }

    .about-page-timeline-item {
        margin-bottom: 45px;
    }

    .about-page-circle {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

    .about-page-timeline-item p {
        max-width: 100%;
    }
}

/*==================================================
    GLOBAL NETWORKS
==================================================*/

.about-page-networks {
    padding: 40px 0;
    background: #f8f9fc;
}

    .about-page-networks .about-page-section-title {
        margin-bottom: 10px;
    }

.about-page-network-card {
    background: #fff;
    border-radius: 18px;
    padding: 38px 28px;
    height: 100%;
    border: 1px solid #edf0f7;
    transition: .35s;
    display: flex;
    flex-direction: column;
}

    .about-page-network-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(16,19,87,.08);
        border-color: #DB1900;
    }
.about-page-network-logo {
    width: 150px;
    height: 75px;
    margin: 0 auto 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8f98b4;
    font-weight: 700;
    font-size: 18px;
    transition: .35s;
}
}

.about-page-network-logo > img {
   
    height: 10px;

}

.about-page-network-card:hover
.about-page-network-logo {
    border-color: #DB1900;
    color: #DB1900;
}

.about-page-network-card h3 {
    color: #101357;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 13px;
    min-height: 56px;
}

.about-page-network-card p {
    color: #6e7488;
    line-height: 1.4;
    text-align: center;
    flex: 1;
    margin-bottom: 28px;
}

.about-page-network-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #101357;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
}

.about-page-network-card:hover a {
    color: #DB1900;
}
@media(max-width:991px) {

    .about-page-networks {
        padding: 30px 0;
    }

    .about-page-network-card {
        padding: 35px 24px;
    }
}

@media(max-width:767px) {

    .about-page-networks {
        padding: 70px 0;
    }

    .about-page-network-logo {
        width: 130px;
        height: 65px;
    }

    .about-page-network-card h3 {
        font-size: 20px;
    }
}

/*==================================================
    ABOUT VALUES
==================================================*/

.about-page-philosophy {
    padding: 40px 0;
    background: #fff;
}

.about-page-section-description {
    max-width: 700px;
    margin: 20px auto 0;
    color: #6e7488;
    line-height: 1.9;
    font-size: 16px;
}

.about-page-value-card {
    position: relative;
    height: 100%;
    text-align: center;
    padding: 45px 30px;
    transition: .35s;
}

    .about-page-value-card::after {
        content: "";
        position: absolute;
        top: 20px;
        right: 0;
        width: 1px;
        height: calc(100% - 40px);
        background: linear-gradient( transparent, #101357, transparent);
        opacity: .15;
    }

.about-page-philosophy .col-lg-3:last-child
.about-page-value-card::after {
    display: none;
}

.about-page-value-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #eef2fd;
    color: #101357;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 28px;
    transition: .4s;
}
.about-page-value-card:hover
.about-page-value-icon {
    background: #101357;
    color: #fff;
    transform: translateY(-8px);
}

.about-page-value-card:hover {
    transform: translateY(-8px);
}

.about-page-value-card h4 {
    color: #101357;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-page-value-card p {
    color: #6e7488;
    line-height: 1.8;
    margin: 0;
}

@media(max-width:991px) {

    .about-page-value-card {
        padding: 35px 25px;
        margin-bottom: 35px;
    }

        .about-page-value-card::after {
            display: none;
        }
}

@media(max-width:767px) {

    .about-page-philosophy {
        padding: 30px 0;
    }

    .about-page-value-icon {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }

    .about-page-value-card h4 {
        font-size: 20px;
    }

    .about-page-section-description {
        font-size: 15px;
    }
}

/*==================================================
    IMPACT
==================================================*/

.about-page-impact {
    padding: 40px 0;
    background: #f8f9fc;
}

.about-page-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    border: 1px solid #edf0f7;
    transition: .35s;
    height: 100%;
}

    .about-page-stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(16,19,87,.08);
        border-color: #DB1900;
    }

    .about-page-stat-card h2 {
        color: #101357;
        font-size: 45px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .about-page-stat-card span {
        color: #6e7488;
        font-size: 16px;
    }

.about-page-founder-card {
    background: #101357;
    border-radius: 26px;
    padding: 55px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .about-page-founder-card::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        right: -120px;
        top: -120px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
    }

    .about-page-founder-card > * {
        position: relative;
        z-index: 2;
    }
.about-page-founder-message {
    font-size: 29px;
    font-weight: 700;

}
    .about-page-founder-tag {
    display: inline-block;
    color: #DB1900;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.about-page-founder-card h3 {
    color: #fff;
    font-size: 29px;
    line-height: 1.35;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-page-founder-card p {
    color: #d9def7;
    line-height: 1.9;
    margin-bottom: 30px;
}

.about-page-founder-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-page-founder-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #DB1900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}
.about-page-founder-avatar > img {
    width: 72px;
    height: 72px;
    border-radius: 50%;

  
}
.about-page-founder-info h5 {
    color: #fff;
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 700;
}

.- span {
    color: #d7ddff;
}

@media(max-width:991px) {

    .about-page-impact {
        padding: 30px 0;
    }

    .about-page-founder-card {
        margin-top: 20px;
        padding: 40px;
    }
}

@media(max-width:767px) {

    .about-page-stat-card {
        padding: 28px 15px;
    }

        .about-page-stat-card h2 {
            font-size: 38px;
        }

    .about-page-founder-card {
        padding: 30px;
    }

        .about-page-founder-card h3 {
            font-size: 26px;
        }

    .about-page-founder-avatar {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/*==================================================
    LEADERSHIP TEAM
==================================================*/

.about-page-team {
    padding: 40px 0;
    background: #fff;
}

.about-page-member-card {
    background: #fff;
    min-height: 475px;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    border: 1px solid #f5f5f5;
}


.about-page-member-image {
    height: 340px;
    background: linear-gradient(135deg,#101357,#1f3682);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .about-page-member-image::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
    }

    .about-page-member-image i {
        position: relative;
        z-index: 2;
        font-size: 90px;
        color: #fff;
    }

.about-page-member-body {
    padding: 15px 20px;
}

    .about-page-member-body h4 {
        color: #101357;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .about-page-member-body span {
        display: block;
        color: #DB1900;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .about-page-member-body p {
        color: #6e7488;
        line-height: 1.8;
        margin: 0;
    }

.about-page-member-card {
    position: relative;
}

    .about-page-member-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 5px;
        background: #DB1900;
        transition: .4s;
    }

    .about-page-member-card:hover::before {
        width: 100%;
    }

@media(max-width:991px) {

    .about-page-team {
        padding: 30px 0;
    }

    .about-page-member-image {
        height: 260px;
    }
}

@media(max-width:767px) {

    .about-page-team {
        padding: 70px 0;
    }

    .about-page-member-image {
        height: 220px;
    }

    .about-page-member-body {
        padding: 24px;
    }

        .about-page-member-body h4 {
            font-size: 20px;
        }
}

/*.about-page-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.about-page-member-card:hover img {
    transform: scale(1.05);
}*/
/*==================================================
    TRUST
==================================================*/

.about-page-trust {
    padding: 40px 0;
    background: #f7f9fc;
}

.about-page-trust-wrapper {
    display: flex;
    align-items: stretch;
  
   
  
    overflow: hidden;
}

.about-page-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction:column;
    gap: 18px;
    padding: 25px 20px;
    position: relative;
    transition: .35s;
}

    .about-page-trust-item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 28px;
        right: 0;
        width: 1px;
        height: calc(100% - 56px);
        background: #e6e9f2;
    }

    .about-page-trust-item:hover {
        background: #fafbfe;
    }

.about-page-trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef2fd;
    color: #101357;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    transition: .35s;
}

.about-page-trust-item:hover .about-page-trust-icon {
    background: #101357;
    color: #fff;
}
.about-page-trust-content  {
   text-align:center;
}


.about-page-trust-content h4 {
    color: #101357;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.about-page-trust-content p {
    margin: 0;
    color: #6d7488;
    line-height: 1.4;
    font-size: 14px;
}


/*=========================
    Tablet
=========================*/

@media(max-width:1199px) {

    .about-page-trust-wrapper {
        flex-wrap: wrap;
    }

    .about-page-trust-item {
        flex: 0 0 50%;
        border-bottom: 1px solid #edf1f7;
    }

        .about-page-trust-item:nth-child(even)::after {
            display: none;
        }
}


/*=========================
    Mobile
=========================*/

@media(max-width:767px) {

    .about-page-trust-wrapper {
        display: block;
    }

    .about-page-trust-item {
        width: 100%;
        padding: 28px 22px;
    }

        .about-page-trust-item::after {
            display: none;
        }

        .about-page-trust-item:not(:last-child) {
            border-bottom: 1px solid #edf1f7;
        }

    .about-page-trust-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .about-page-trust-content h4 {
        font-size: 18px;
    }

    .about-page-trust-content p {
        font-size: 14px;
    }
}

/*==================================================
    ABOUT CTA
==================================================*/

.about-page-cta {
    padding: 0;
}

.about-page-cta-box {
    background: linear-gradient(135deg, #101357 0%, #12256f 55%, #0d184d 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}



    .about-page-cta-box .container {
        position: relative;
        z-index: 2;
    }

    .about-page-cta-box h2 {
        color: #fff;
        font-size: 32px;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 25px;
    }

    .about-page-cta-box p {
        color: #d9def7;
        font-size: 17px;
        line-height: 1.9;
        margin: 0;
    }

.about-page-cta-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-page-btn {
    height: 48px;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

.about-page-btn-primary {
    background: #DB1900;
    color: #fff;
}

    .about-page-btn-primary:hover {
        background: #fff;
        color: #101357;
    }

.about-page-btn-outline {
    border: 2px solid rgba(255,255,255,.25);
    color: #fff;
}

    .about-page-btn-outline:hover {
        background: #fff;
        border-color: #fff;
        color: #101357;
    }

@media(max-width:991px) {

    .about-page-cta {
        margin-top: 80px;
    }

    .about-page-cta-box {
        padding: 20px 0;
        text-align: center;
    }

        .about-page-cta-box h2 {
            font-size: 36px;
        }

    .about-page-cta-buttons {
        justify-content: center;
        margin-top: 35px;
    }
}

@media(max-width:767px) {

    .about-page-cta {
        margin-top: 60px;
    }

    .about-page-cta-box {
        padding: 50px 0;
    }

        .about-page-cta-box h2 {
            font-size: 28px;
        }

        .about-page-cta-box p {
            font-size: 15px;
        }

    .about-page-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .about-page-btn {
        width: 100%;
        min-width: 100%;
    }
}