/*==================================================
ABOUT HERO
==================================================*/

.about-hero{
    position:relative;
    padding:130px 0 90px;
    overflow:hidden;

    background:
    linear-gradient(rgba(18,28,48,.82),rgba(18,28,48,.82)),
    url("../images/1.jpg") center/cover no-repeat;
}

.about-hero-content{
    max-width:900px;
}

.about-label{
    display:inline-block;
    margin-bottom:20px;

    color:#95C11F;

    letter-spacing:2px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;
}

.about-hero h1{

    color:#fff;

    font-size:60px;

    line-height:1.08;

    margin-bottom:25px;

}

.about-hero p{

    color:rgba(255,255,255,.85);

    font-size:18px;

    line-height:32px;

    max-width:650px;

}

.about-breadcrumb{

    margin-top:40px;

    display:flex;

    align-items:center;

    gap:12px;

}

.about-breadcrumb a{

    color:#95C11F;

    text-decoration:none;

    font-weight:600;

}

.about-breadcrumb strong{

    color:#fff;

}
/* ABOUT PAGE HEADER FIX */

body{
    padding-top:104px;
}

.about-hero{
    margin-top:0 !important;
    padding-top:150px;
}

#menu-wrap{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    top:0 !important;
}

/*==================================================
WHO WE ARE
==================================================*/

.about-intro{
    padding:110px 0;
    background:#fff;
}

.about-intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-intro-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.section-tag{
    display:inline-block;
    margin-bottom:18px;
    color:#95C11F;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-intro-content h2{
    margin-bottom:24px;
    color:#172033;
    font-size:46px;
    line-height:1.2;
}

.about-intro-content p{
    margin-bottom:18px;
    color:#666;
    font-size:17px;
    line-height:30px;
}

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-top:30px;
}

.about-feature{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}

.about-feature i{
    color:#95C11F;
}

@media (max-width:991px){

    .about-intro-grid{
        grid-template-columns:1fr;
    }

    .about-intro-content h2{
        font-size:36px;
    }

    .about-features{
        grid-template-columns:1fr;
    }
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:35px;
    margin-bottom:35px;
}

.primary-btn,
.secondary-btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.primary-btn{
    background:#95C11F;
    color:#fff;
}

.primary-btn:hover{
    background:#7fa61a;
}

.secondary-btn{
    border:2px solid #fff;
    color:#fff;
}

.secondary-btn:hover{
    background:#fff;
    color:#172033;
}

/*==================================================
MODERN LEADERSHIP TEAM
==================================================*/

.team-modern{
    position:relative;
    padding:110px 0;
    overflow:hidden;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(149,193,31,.10),
            transparent 27%
        ),
        #f5f7fb;
}

.team-modern::after{
    content:"";
    position:absolute;
    width:340px;
    height:340px;
    right:-170px;
    bottom:-190px;
    border-radius:50%;
    background:rgba(69,62,142,.08);
}

.team-heading{
    position:relative;
    z-index:2;
    max-width:760px;
    margin:0 auto 55px;
    text-align:center;
}

.team-heading h2{
    margin:12px 0 18px;
    color:#172033;
    font-size:48px;
    line-height:1.14;
    letter-spacing:-1px;
}

.team-heading p{
    max-width:680px;
    margin:0 auto;
    color:#687080;
    font-size:16px;
    line-height:29px;
}

.team-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:24px;
}

.team-card{
    position:relative;
    min-width:0;
    overflow:hidden;
    border:1px solid rgba(23,32,51,.07);
    border-radius:22px;
    background:#ffffff;
    box-shadow:0 18px 45px rgba(23,32,51,.08);
    text-align:left;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.team-card:hover{
    transform:translateY(-10px);
    border-color:rgba(149,193,31,.45);
    box-shadow:0 28px 65px rgba(23,32,51,.14);
}

.team-card img{
    width:100%;
    height:280px;
    display:block;
    margin:0;
    border-radius:0;
    object-fit:cover;
    object-position:center top;
    filter:saturate(.95);
    transition:
        transform .55s ease,
        filter .55s ease;
}

.team-card:hover img{
    transform:scale(1.04);
    filter:saturate(1.05);
}

.team-card h3{
    margin:26px 24px 7px;
    color:#172033;
    font-size:25px;
    line-height:1.2;
    letter-spacing:-.3px;
}

.team-card > span{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    margin:0 24px;
    padding:0 12px;
    border-radius:18px;
    background:rgba(149,193,31,.12);
    color:#78a10c;
    font-size:11px;
    line-height:16px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.team-card p{
    min-height:112px;
    margin:20px 24px 28px;
    color:#687080;
    font-size:14px;
    line-height:25px;
    text-align:left;
}

.team-card::after{
    content:"";
    position:absolute;
    left:24px;
    right:24px;
    bottom:0;
    height:3px;
    border-radius:3px 3px 0 0;
    background:linear-gradient(90deg,#95c11f,#453e8e);
    transform:scaleX(0);
    transform-origin:left center;
    transition:transform .35s ease;
}

.team-card:hover::after{
    transform:scaleX(1);
}

@media only screen and (max-width:1100px){

    .team-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }

    .team-card img{
        height:340px;
    }
}

@media only screen and (max-width:650px){

    .team-modern{
        padding:80px 20px;
    }

    .team-heading h2{
        font-size:36px;
    }

    .team-grid{
        grid-template-columns:1fr;
    }

    .team-card img{
        height:360px;
    }

    .team-card p{
        min-height:0;
    }
}

/*==================================================
WHAT WE DELIVER
==================================================*/

.about-services{
    position:relative;
    padding:110px 0;
    overflow:hidden;
    background:#ffffff;
}

.about-services::before{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    left:-200px;
    top:-170px;
    border-radius:50%;
    background:rgba(149,193,31,.08);
}

.about-services-heading{
    position:relative;
    z-index:2;
    max-width:850px;
    margin:0 auto 55px;
    text-align:center;
}

.about-services-heading h2{
    margin:12px 0 20px;
    color:#172033;
    font-size:48px;
    line-height:1.15;
    letter-spacing:-1px;
}

.about-services-heading h2 span{
    display:block;
    color:#95c11f;
}

.about-services-heading p{
    max-width:720px;
    margin:0 auto;
    color:#687080;
    font-size:16px;
    line-height:29px;
}

.about-services-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:24px;
}

.about-service-card{
    position:relative;
    min-height:330px;
    padding:30px;
    overflow:hidden;
    border:1px solid #e8ecf2;
    border-radius:22px;
    background:#f8f9fc;
    color:inherit;
    text-decoration:none;
    box-shadow:0 14px 35px rgba(23,32,51,.05);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.about-service-card::after{
    content:"";
    position:absolute;
    width:110px;
    height:110px;
    right:-55px;
    bottom:-55px;
    border-radius:50%;
    background:rgba(149,193,31,.13);
    transition:transform .35s ease;
}

.about-service-card:hover{
    transform:translateY(-9px);
    border-color:rgba(149,193,31,.55);
    background:#ffffff;
    box-shadow:0 25px 55px rgba(23,32,51,.12);
}

.about-service-card:hover::after{
    transform:scale(1.35);
}

.about-service-number{
    position:absolute;
    top:25px;
    right:26px;
    color:rgba(23,32,51,.12);
    font-size:34px;
    line-height:1;
    font-weight:800;
}

.about-service-icon{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:27px;
    border-radius:17px;
    background:linear-gradient(135deg,#453e8e,#6259b8);
    color:#ffffff;
    font-size:22px;
    box-shadow:0 12px 28px rgba(69,62,142,.20);
}

.about-service-card h3{
    margin:0 0 15px;
    color:#172033;
    font-size:23px;
    line-height:1.28;
}

.about-service-card p{
    margin:0 0 24px;
    color:#687080;
    font-size:14px;
    line-height:25px;
    text-align:left;
}

.about-service-link{
    position:absolute;
    left:30px;
    bottom:28px;
    z-index:2;
    color:#453e8e;
    font-size:11px;
    font-weight:800;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.about-service-support{
    background:
        linear-gradient(
            145deg,
            rgba(69,62,142,.97),
            rgba(31,38,67,.98)
        );
}

.about-service-support .about-service-number{
    color:rgba(255,255,255,.12);
}

.about-service-support .about-service-icon{
    background:#95c11f;
}

.about-service-support h3{
    color:#ffffff;
}

.about-service-support p{
    color:rgba(255,255,255,.72);
}

.about-service-support .about-service-link{
    color:#d9ef86;
}

@media only screen and (max-width:1100px){

    .about-services-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
}

@media only screen and (max-width:650px){

    .about-services{
        padding:80px 20px;
    }

    .about-services-heading h2{
        font-size:36px;
    }

    .about-services-grid{
        grid-template-columns:1fr;
    }

    .about-service-card{
        min-height:310px;
    }
}

/* WHY CHOOSE */

.about-why{
    padding:110px 0;
    background:#f8f9fc;
}

.about-why-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:60px;
    align-items:center;
}

.about-why-left h2{
    font-size:46px;
    color:#172033;
    margin:15px 0 25px;
}

.about-why-left p{
    color:#666;
    line-height:30px;
    margin-bottom:35px;
}

.why-list{
    display:grid;
    gap:18px;
}

.why-item{
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:600;
}

.why-item i{
    color:#95C11F;
}

.about-why-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.why-stat{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.why-stat h3{
    font-size:46px;
    color:#453e8e;
    margin-bottom:10px;
}

.why-stat p{
    color:#666;
}

/*==================================================
TRADESTONE GROUP — HORIZONTAL TIMELINE
==================================================*/

.associate-timeline-section{
    position:relative;
    padding:110px 0 120px;
    overflow:hidden;
    background:#121b30;
}

.associate-timeline-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-230px;
    right:-170px;
    border-radius:50%;
    background:rgba(149,193,31,.09);
}

.associate-timeline-section::after{
    content:"";
    position:absolute;
    width:370px;
    height:370px;
    left:-200px;
    bottom:-220px;
    border-radius:50%;
    background:rgba(98,89,184,.16);
}

.associate-timeline-heading{
    position:relative;
    z-index:2;
    max-width:820px;
    margin:0 auto 75px;
    text-align:center;
}

.associate-timeline-heading .section-tag{
    color:#b9dc55;
}

.associate-timeline-heading h2{
    margin:12px 0 20px;
    color:#ffffff;
    font-size:48px;
    line-height:1.14;
    letter-spacing:-1px;
}

.associate-timeline-heading p{
    max-width:720px;
    margin:0 auto;
    color:rgba(255,255,255,.66);
    font-size:16px;
    line-height:29px;
}

.associate-timeline{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(5, minmax(0,1fr));
    gap:24px;
    padding-top:20px;
}

.associate-timeline-line{
    position:absolute;
    top:61px;
    left:10%;
    right:10%;
    height:3px;
    border-radius:3px;
    background:
        linear-gradient(
            90deg,
            #95c11f 0%,
            #95c11f 20%,
            #6259b8 55%,
            #95c11f 100%
        );
}

.associate-timeline-item{
    position:relative;
    z-index:2;
    min-width:0;
    padding:0 10px;
    text-align:center;
}

.associate-timeline-node{
    position:relative;
    width:82px;
    height:82px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;
    border:7px solid #121b30;
    border-radius:50%;
    background:linear-gradient(135deg,#453e8e,#7168cf);
    color:#ffffff;
    font-size:26px;
    box-shadow:0 0 0 2px rgba(149,193,31,.55);
    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.associate-timeline-node::after{
    content:"";
    position:absolute;
    inset:-10px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
}

.associate-timeline-item:hover .associate-timeline-node{
    transform:translateY(-8px) scale(1.05);
    background:linear-gradient(135deg,#95c11f,#7fa817);
    box-shadow:0 0 0 5px rgba(149,193,31,.14);
}

.associate-step{
    display:inline-block;
    margin-bottom:13px;
    color:#b9dc55;
    font-size:11px;
    line-height:16px;
    font-weight:800;
    letter-spacing:1.8px;
}

.associate-timeline-item h3{
    min-height:58px;
    margin:0 0 14px;
    color:#ffffff;
    font-size:20px;
    line-height:1.3;
}

.associate-timeline-item h3 small{
    display:block;
    margin-top:3px;
    color:rgba(255,255,255,.75);
    font-size:15px;
    line-height:1.3;
    font-weight:600;
}

.associate-timeline-item p{
    max-width:210px;
    margin:0 auto;
    color:rgba(255,255,255,.57);
    font-size:13px;
    line-height:23px;
    text-align:center;
}

/* Tablet */
@media only screen and (max-width:1000px){

    .associate-timeline{
        grid-template-columns:repeat(3, minmax(0,1fr));
        gap:45px 24px;
    }

    .associate-timeline-line{
        display:none;
    }

    .associate-timeline-item::before{
        content:"";
        position:absolute;
        top:40px;
        left:50%;
        width:1px;
        height:42px;
        background:rgba(149,193,31,.35);
        transform:translateX(-50%);
        z-index:-1;
    }
}

/* Mobile */
@media only screen and (max-width:650px){

    .associate-timeline-section{
        padding:80px 20px;
    }

    .associate-timeline-heading{
        margin-bottom:50px;
    }

    .associate-timeline-heading h2{
        font-size:36px;
    }

    .associate-timeline{
        grid-template-columns:1fr;
        gap:34px;
    }

    .associate-timeline-item{
        display:grid;
        grid-template-columns:82px 1fr;
        column-gap:20px;
        align-items:center;
        padding:0;
        text-align:left;
    }

    .associate-timeline-node{
        grid-row:1 / span 3;
        margin:0;
    }

    .associate-step{
        margin-bottom:5px;
    }

    .associate-timeline-item h3{
        min-height:0;
        margin-bottom:8px;
        font-size:20px;
    }

    .associate-timeline-item p{
        max-width:none;
        margin:0;
        text-align:left;
    }

    .associate-timeline-item::before{
        display:none;
    }
}

/* COMPANY PROFILE BUTTON */

.company-profile-download {
    margin-top: 30px;
}

.company-profile-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 15px;

    padding: 14px 22px;
    background: #443a96;

    color: #ffffff !important;
    border-radius: 9px;
    text-decoration: none !important;

    box-shadow: 0 8px 20px rgba(40, 35, 100, 0.12);
    transition: all 0.3s ease;
}

/* PDF icon */
.company-profile-btn > i:first-child {
    font-size: 22px;
    color: #ffffff !important;
}

/* Text area */
.company-profile-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    color: #ffffff !important;
}

/* Small COMPANY PROFILE text */
.company-profile-btn span small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.3px;
    color: #9acb16 !important;
    margin-bottom: 3px;
}

/* Download icon */
.company-profile-btn > i:last-child {
    margin-left: 8px;
    font-size: 15px;
    color: #ffffff !important;
}

/* Hover */
.company-profile-btn:hover {
    background: #37307c;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(40, 35, 100, 0.20);
}