/*--------------------------------------------------------------
ABOUT PUTUSHART
--------------------------------------------------------------*/


.about-home{

    width:100%;

    padding:120px 0;

    background:#ffffff;

}


.about-home .container{

    max-width:1320px;

    width:92%;

    margin:auto;

}


.about-home__wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}



/*--------------------------------------------------------------
IMAGE
--------------------------------------------------------------*/


.about-home__image{

    overflow:hidden;

    border-radius:24px;

}


.about-home__image img{

    width:100%;

    display:block;

    border-radius:24px;

    object-fit:cover;

    transition:.5s ease;

}


.about-home__image:hover img{

    transform:scale(1.03);

}



/*--------------------------------------------------------------
CONTENT
--------------------------------------------------------------*/


.about-home__subtitle{

    display:inline-block;

    margin-bottom:18px;

    letter-spacing:3px;

    font-size:13px;

    font-weight:600;

    color:#a9854f;

}


.about-home__title{

    margin:0;

    font-size:48px;

    line-height:1.2;

    font-weight:600;

    color:#111111;

}


.about-home__description{

    margin-top:30px;

    font-size:17px;

    line-height:1.9;

    color:#666666;

}



/*--------------------------------------------------------------
FEATURES
--------------------------------------------------------------*/


.about-home__features{

    display:grid;

    gap:28px;

    margin-top:45px;

}


.about-feature{

    padding-bottom:25px;

    border-bottom:1px solid #eeeeee;

}


.about-feature:last-child{

    border:none;

    padding-bottom:0;

}


.about-feature h4{

    margin:0 0 10px;

    font-size:22px;

    font-weight:600;

    color:#111111;

}


.about-feature p{

    margin:0;

    line-height:1.8;

    color:#666666;

}



/*--------------------------------------------------------------
BUTTON
--------------------------------------------------------------*/


.about-home__button{

    display:inline-block;

    margin-top:50px;

    padding:18px 38px;

    background:#111111;

    color:#ffffff;

    text-decoration:none;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:.4s ease;

}


.about-home__button:hover{

    background:#a9854f;

    color:#ffffff;

}



/*--------------------------------------------------------------
DESKTOP ONLY
--------------------------------------------------------------*/


@media (max-width:1024px){

    .about-home__wrapper{

        grid-template-columns:1fr;

        gap:60px;

    }


    .about-home__title{

        font-size:40px;

    }

}


@media (max-width:768px){

    .about-home{

        padding:90px 0;

    }


    .about-home__title{

        font-size:34px;

    }


    .about-home__button{

        width:100%;

        text-align:center;

    }

}


@media (max-width:576px){

    .about-home{

        padding:70px 0;

    }


    .about-home__title{

        font-size:28px;

    }


    .about-home__description{

        font-size:16px;

    }


    .about-feature h4{

        font-size:20px;

    }

}