/*==================================================
BARGIIN
ABOUT PAGE
==================================================*/

.about-page{
    padding-top:90px;
    background:#f8f6f0;
    color:#243b2d;
}


/*==================================
HERO
==================================*/

.about-hero{
    padding:85px 0 70px;
    text-align:center;
}

.about-badge{
    display:inline-block;
    padding:7px 18px;
    margin-bottom:18px;
    border-radius:30px;
    background:rgba(47,91,61,.09);
    color:#2f5b3d;
    font-size:14px;
}

.about-hero h1{
    margin:0;
    font-size:44px;
    line-height:1.5;
}

.about-hero h1 span,
.about-story-content h2 span,
.about-section-header h2 span,
.about-why-content h2 span,
.about-cta h2 span{
    color:#2f5b3d;
}

.about-hero p{
    max-width:650px;
    margin:18px auto 0;
    color:#68736b;
    font-size:16px;
    line-height:2;
}


/*==================================
STORY
==================================*/

.about-story{
    padding:40px 0 100px;
}

.about-story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.about-story-image{
    position:relative;
    min-height:480px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:24px;
    background:#eeece4;
}

.about-story-image img{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    max-height:480px;
    object-fit:contain;
    display:block;
}

.about-image-decoration{
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(47,91,61,.08);
}

.about-story-content{
    max-width:600px;
}

.about-section-label{
    display:inline-block;
    margin-bottom:12px;
    color:#6c806f;
    font-size:14px;
    font-weight:600;
}

.about-story-content h2,
.about-section-header h2,
.about-why-content h2{
    margin:0 0 20px;
    font-size:34px;
    line-height:1.6;
}

.about-story-content p{
    margin:0 0 16px;
    color:#68736b;
    font-size:15px;
    line-height:2.1;
}


/*==================================
VALUES
==================================*/

.about-values{
    padding:90px 0;
    background:#f1efe7;
}

.about-section-header{
    text-align:center;
    margin-bottom:45px;
}

.about-section-header h2{
    margin-bottom:0;
}

.about-values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.about-value{
    padding:32px 22px;
    text-align:center;
    background:#fff;
    border:1px solid rgba(36,59,45,.07);
    border-radius:18px;
    box-shadow:0 8px 28px rgba(35,56,43,.05);
    transition:.3s ease;
}

.about-value:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 35px rgba(35,56,43,.09);
}

.about-value-icon{
    width:65px;
    height:65px;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(47,91,61,.09);
    color:#2f5b3d;
    font-size:24px;
}

.about-value h3{
    margin:0 0 10px;
    font-size:19px;
}

.about-value p{
    margin:0;
    color:#707a73;
    font-size:13px;
    line-height:2;
}


/*==================================
WHY BARGIIN
==================================*/

.about-why{
    padding:100px 0;
}

.about-why-box{
    display:grid;
    grid-template-columns:1fr 300px;
    align-items:center;
    gap:60px;
    padding:60px;
    border-radius:26px;
    background:#e9eee8;
}

.about-why-content h2{
    margin-bottom:15px;
}

.about-why-content p{
    max-width:650px;
    margin:0 0 25px;
    color:#68736b;
    line-height:2;
}

.about-check-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px 30px;
}

.about-check-list div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#405148;
    font-size:14px;
}

.about-check-list i{
    color:#2f5b3d;
}

.about-why-icon{
    width:220px;
    height:220px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.65);
    color:#2f5b3d;
    font-size:75px;
}


/*==================================
CTA
==================================*/

.about-cta{
    padding:20px 0 100px;
    text-align:center;
}

.about-cta-content{
    padding:65px 25px;
    border-radius:25px;
    background:#2f5b3d;
    color:#fff;
}

.about-cta .about-section-label{
    color:rgba(255,255,255,.7);
}

.about-cta h2{
    margin:0 0 15px;
    font-size:34px;
    line-height:1.6;
}

.about-cta h2 span{
    color:#fff;
}

.about-cta p{
    max-width:600px;
    margin:0 auto 28px;
    color:rgba(255,255,255,.82);
    line-height:2;
}

.about-cta-button{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    border-radius:30px;
    background:#fff;
    color:#2f5b3d;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.25s ease;
}

.about-cta-button:hover{
    transform:translateY(-2px);
}

.about-cta-button i{
    transition:.25s ease;
}

.about-cta-button:hover i{
    transform:translateX(-4px);
}


/*==================================
TABLET
==================================*/

@media(max-width:992px){

    .about-page{
        padding-top:85px;
    }

    .about-hero{
        padding:65px 0 50px;
    }

    .about-hero h1{
        font-size:38px;
    }

    .about-story-grid{
        gap:40px;
    }

    .about-story-image{
        min-height:400px;
    }

    .about-values-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-why-box{
        grid-template-columns:1fr 220px;
        padding:45px;
        gap:35px;
    }

}


/*==================================
MOBILE
==================================*/

@media(max-width:768px){

    .about-page{
        padding-top:72px;
    }

    .about-hero{
        padding:50px 0 40px;
    }

    .about-hero h1{
        font-size:30px;
        line-height:1.7;
    }

    .about-hero p{
        padding:0 15px;
        font-size:14px;
    }

    .about-story{
        padding:25px 0 65px;
    }

    .about-story-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .about-story-image{
        min-height:330px;
        order:1;
    }

    .about-story-content{
        order:2;
    }

    .about-story-content h2,
    .about-section-header h2,
    .about-why-content h2{
        font-size:27px;
    }

    .about-story-content p{
        font-size:14px;
    }

    .about-values{
        padding:65px 0;
    }

    .about-values-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .about-value{
        padding:25px 20px;
    }

    .about-why{
        padding:65px 0;
    }

    .about-why-box{
        grid-template-columns:1fr;
        padding:35px 22px;
        gap:30px;
        text-align:center;
    }

    .about-why-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .about-check-list{
        grid-template-columns:1fr;
        text-align:right;
    }

    .about-why-icon{
        width:150px;
        height:150px;
        font-size:50px;
        order:-1;
    }

    .about-cta{
        padding:0 0 65px;
    }

    .about-cta-content{
        padding:45px 20px;
    }

    .about-cta h2{
        font-size:28px;
    }

}


/*==================================
SMALL MOBILE
==================================*/

@media(max-width:480px){

    .about-badge{
        font-size:12px;
    }

    .about-hero h1{
        font-size:26px;
    }

    .about-story-image{
        min-height:280px;
    }

    .about-story-content h2,
    .about-section-header h2,
    .about-why-content h2{
        font-size:24px;
    }

    .about-value-icon{
        width:58px;
        height:58px;
        font-size:21px;
    }

    .about-cta h2{
        font-size:25px;
    }

}

