.about-v2{

    overflow:hidden;

}

/*
|--------------------------------------------------------------------------
| CONTAINER
|--------------------------------------------------------------------------
*/

.about-v2-container{

    max-width:1320px;

    margin:0 auto;

    padding:0 32px;

}

/*
|--------------------------------------------------------------------------
| MINI TAG
|--------------------------------------------------------------------------
*/

.about-mini-tag{

    display:flex;

    align-items:center;

    gap:14px;

    color:var(--orange);

    font-size:13px;

    font-weight:700;

    letter-spacing:.18em;

    margin-bottom:30px;

    text-transform:uppercase;

}

.about-mini-tag span{

    width:34px;

    height:2px;

    background:var(--orange);

}

/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.about-v2-hero{

    position:relative;

    min-height:100vh;

    overflow:hidden;

    display:flex;

    align-items:center;

    background:var(--background);

}

.about-v2-hero-grid{

    position:relative;

    width:100%;

    min-height:100vh;

    display:flex;

    align-items:center;

}

.about-v2-hero-content{

    position:relative;

    z-index:5;

    width:42%;

    padding-left:80px;

    max-width:760px;

}

.about-v2-hero-content h1{

    font-size:96px;

    line-height:.92;

    letter-spacing:-5px;

    margin-bottom:34px;

}

.about-v2-hero-content p{

    max-width:620px;

    font-size:22px;

    line-height:1.9;

    color:var(--text-light);

}

.about-v2-hero-image{

    position:absolute;

    top:0;

    right:0;

    width:70%;

    height:100%;

    overflow:hidden;

}

.about-v2-hero-image picture{

    display:block;

    width:100%;

    height:100%;

}

.about-v2-hero-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center right;

}

.about-v2-hero-image::before{

    content:'';

    position:absolute;

    inset:0;

    z-index:2;

    background:
        linear-gradient(
            to left,
            transparent 0%,
            rgba(246,241,235,.15) 20%,
            rgba(246,241,235,.45) 38%,
            rgba(246,241,235,.85) 58%,
            var(--background) 76%
        );

}

/*
|--------------------------------------------------------------------------
| STORY
|--------------------------------------------------------------------------
*/

.about-v2-story{

    padding:120px 0 140px;

}

.about-story-box{

    background:#fff;

    border-radius:42px;

    padding:70px;

    display:grid;

    grid-template-columns:1fr 620px;

    gap:60px;

    border:
        1px solid rgba(0,0,0,.06);

    box-shadow:
        0 20px 60px rgba(0,0,0,.04);

}

.about-story-left{

    max-width:580px;

}

.about-story-left h2{

    font-size:88px;

    line-height:.88;

    letter-spacing:-5px;

    margin-bottom:34px;

}

.about-story-left p{

    font-size:18px;

    line-height:1.9;

    color:var(--text-light);

    margin-bottom:24px;

    max-width:540px;

}

.about-story-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}

.story-stat-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border-radius:34px;

    padding:38px;

    border:
        1px solid rgba(0,0,0,.06);

    min-height:300px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.story-stat-card::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.65),
            transparent
        );

    transform:skewX(-24deg);

    transition:left .8s ease;

}

.story-stat-card:hover{

    transform:
        translateY(-8px);

    box-shadow:
        0 24px 60px rgba(0,0,0,.08);

}

.story-stat-card:hover::before{

    left:140%;

}

.story-stat-icon{

    width:64px;

    height:64px;

    border-radius:20px;

    background:
        rgba(237,127,26,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:46px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.8),
        0 10px 20px rgba(237,127,26,.12);

}

.story-stat-icon i{

    color:var(--orange);

    font-size:22px;

}

.story-stat-card strong{

    display:block;

    font-size:58px;

    line-height:1;

    margin-bottom:18px;

    margin-top:auto;

    letter-spacing:-2px;

}

.story-stat-card span{

    color:var(--text-light);

    font-size:17px;

    line-height:1.6;

}

/*
|--------------------------------------------------------------------------
| VALUES
|--------------------------------------------------------------------------
*/

.about-v2-values{

    padding-bottom:140px;

}

.about-values-title{

    font-size:78px;

    line-height:.92;

    letter-spacing:-5px;

    margin-bottom:54px;

}

.about-values-grid{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:28px;

}

.about-value-v2-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border-radius:36px;

    padding:42px;

    border:
        1px solid rgba(0,0,0,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.about-value-v2-card::before{

    content:'';

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.75),
            transparent
        );

    transform:skewX(-24deg);

    transition:left .8s ease;

}

.about-value-v2-card:hover{

    transform:
        translateY(-8px);

    box-shadow:
        0 24px 60px rgba(0,0,0,.08);

}

.about-value-v2-card:hover::before{

    left:140%;

}

.about-value-v2-icon{

    width:62px;

    height:62px;

    border-radius:20px;

    background:
        rgba(237,127,26,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:34px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.8),
        0 10px 20px rgba(237,127,26,.12);

}

.about-value-v2-icon i{

    color:var(--orange);

    font-size:22px;

}

.about-value-v2-card h3{

    font-size:36px;

    margin-bottom:18px;

}

.about-value-v2-card p{

    font-size:19px;

    line-height:1.8;

    color:var(--text-light);

}

/*
|--------------------------------------------------------------------------
| CTA
|--------------------------------------------------------------------------
*/

.about-v2-cta{

    padding-bottom:140px;

}

.about-v2-cta-box{

    background:#050505;

    border-radius:42px;

    padding:120px 60px;

    text-align:center;

    color:#fff;

}

.about-v2-cta-box h2{

    font-size:72px;

    margin-bottom:24px;

}

.about-v2-cta-box p{

    max-width:700px;

    margin:0 auto 40px;

    font-size:22px;

    line-height:1.8;

    color:rgba(255,255,255,.72);

}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width:1400px){

    .about-story-box{

        grid-template-columns:1fr;

    }

}

@media(max-width:1200px){

    .about-v2-hero-grid{

        flex-direction:column;

    }

    .about-v2-hero-content{

        width:100%;

        padding:
            140px 40px 80px;

    }

    .about-v2-hero-image{

        position:relative;

        width:100%;

        min-height:600px;

    }

    .about-values-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .about-v2-container{

        padding:0 20px;

    }

    .about-v2-hero-content{

        width:100%;

        padding:
            120px 20px 60px;

    }

    .about-v2-hero-content h1{

        font-size:58px;

        letter-spacing:-3px;

    }

    .about-v2-hero-content p{

        font-size:18px;

    }

    .about-v2-hero-image{

        position:relative;

        width:100%;

        min-height:420px;

    }

    .about-story-box{

        padding:34px;

        gap:40px;

    }

    .about-story-left h2{

        font-size:54px;

    }

    .about-story-left p{

        font-size:17px;

    }

    .about-story-right{

        grid-template-columns:1fr;

    }

    .story-stat-card{

        min-height:220px;

    }

    .story-stat-card strong{

        font-size:52px;

    }

    .about-values-title{

        font-size:48px;

        letter-spacing:-2px;

    }

    .about-value-v2-card h3{

        font-size:30px;

    }

    .about-v2-cta-box{

        padding:80px 28px;

    }

    .about-v2-cta-box h2{

        font-size:44px;

    }

}
