/*==========================================
            ABOUT SECTION
==========================================*/

.about-home{
    width:100%;
    padding:50px 0;
    background:#fff;
    overflow:hidden;
}

.about-home .container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.about-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

/*==========================================
            LEFT SIDE
==========================================*/

.about-content{
    width:50%;
}

.about-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#69A41A;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.about-tag i{
    font-size:12px;
}

.about-title{
    font-size:35px;
    line-height:1.15;
    font-weight:800;
    color:#222;
    margin-bottom:28px;
}

.about-title span{
    color:#69A41A;
}

.about-text{
    font-size:15px;
    line-height:1.9;
    color:#666;
    margin-bottom:45px;
}

/*==========================================
            FEATURES
==========================================*/

.about-features{
    display:flex;
    justify-content:space-between;
    gap:18px;
    margin-bottom:45px;
}

.about-feature-box{

    flex:1;
    display:flex;
    align-items:flex-start;
    gap:15px;

}

.about-feature-icon{

    width:40px;
    height:40px;
    border-radius:50%;
    background:#edf7df;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;

}

.about-feature-icon i{

    font-size:20px;
    color:#69A41A;

}

.about-feature-content h5{

    font-size:20px;
    color:#222;
    margin-bottom:8px;
    font-weight:700;

}

.about-feature-content p{

    font-size:14px;
    color:#666;
    line-height:1.7;

}

/*==========================================
            BUTTON
==========================================*/

.about-btn{

    display:inline-flex;
    align-items:center;
    gap:12px;

    text-decoration:none;

    background:#69A41A;
    color:#fff;

    padding:15px 20px;

    border-radius:8px;

    font-size:18px;
    font-weight:600;

    transition:.4s;

}

.about-btn i{

    font-size:20px;

}

.about-btn:hover{

    background:#4f7d11;

    color:#fff;

    transform:translateY(-4px);

}

/*==========================================
            RIGHT SIDE
==========================================*/

.about-gallery{

    width:50%;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.gallery-box{

    width:100%;
    height:200px;

    overflow:hidden;

    border-radius:18px;

    background:#eee;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.gallery-box img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.7s;

}

.gallery-box:hover img{

    transform:scale(1.12);

}



/*==========================================
        SCROLL ANIMATION
==========================================*/

.about-tag,
.about-title,
.about-text,
.about-feature-box,
.about-btn,
.gallery-box{

    opacity:0;
    transform:scale(.85);
    transition:all .8s ease;

}

.about-tag.show,
.about-title.show,
.about-text.show,
.about-feature-box.show,
.about-btn.show,
.gallery-box.show{

    opacity:1;
    transform:scale(1);

}

/*==========================================
        IMAGE HOVER
==========================================*/

.gallery-box{
    position:relative;
    cursor:pointer;
}

.gallery-box::after{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(105,164,26,.12);

    opacity:0;

    transition:.4s;

}

.gallery-box:hover::after{

    opacity:1;

}

.gallery-box:hover{

    transform:translateY(-8px);

    transition:.4s;

}

/*==========================================
            TABLET
==========================================*/

@media(max-width:991px){

.about-home{

    padding:80px 0;

}

.about-wrapper{

    flex-direction:column;

    gap:60px;

}

.about-content{

    width:100%;

}

.about-gallery{

    width:100%;

}

.about-title{

    font-size:46px;

}

.about-text{

    font-size:17px;

}

.about-features{

    gap:15px;

}

.about-feature-content h5{

    font-size:20px;

}

.gallery-box{

    height:240px;

}

}

/*==========================================
            MOBILE
==========================================*/

@media(max-width:767px){

.about-home{

    padding:70px 0;

}

.about-wrapper{

    flex-direction:column;

    gap:45px;

}

.about-content{

    width:100%;

    order:1;

}

.about-gallery{

    width:100%;

    order:2;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.about-tag{

    font-size:15px;

}

.about-tag i{

    font-size:18px;

}

.about-title{

    font-size:34px;

    line-height:1.25;

}

.about-text{

    font-size:15px;

    line-height:1.8;

    margin-bottom:30px;

}

.about-features{

    flex-direction:column;

    gap:20px;

    margin-bottom:35px;

}

.about-feature-box{

    align-items:center;

}

.about-feature-icon{

    width:58px;

    height:58px;

}

.about-feature-icon i{

    font-size:24px;

}

.about-feature-content h5{

    font-size:18px;

}

.about-feature-content p{

    font-size:14px;

}

.about-btn{

    width:100%;

    justify-content:center;

    padding:16px;

    font-size:17px;

}

.gallery-box{

    height:170px;

    border-radius:15px;

}

}

/*==========================================
        SMALL MOBILE
==========================================*/

@media(max-width:480px){

.about-home .container{

    width:92%;

}

.about-title{

    font-size:28px;

}

.about-gallery{

    grid-template-columns:repeat(2,1fr);

    gap:12px;

}

.gallery-box{

    height:145px;

}

.about-feature-content h5{

    font-size:16px;

}

.about-feature-content p{

    font-size:13px;

}

.about-btn{

    font-size:16px;

}

}