/* section lire service */
    .boxService{
        width: 80%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        margin-top: 16px;
    }

    .boxImgService{
        width: 600px;
        height: auto;
    }

    .boxImgService img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    p.description{
        font-size: 20px;
        white-space: pre-line;
        text-align: justify;
    }
    
    .detail_service{
        width: 100%;
        list-style: none;
        background: var(--greenbg);
        padding: 16px;
        border-radius: 8px;
    }
    
    .detail_service span{
        font-weight: 600;
        color: var(--greentxt);
    }
/* section lire service */

/* responsive */
    /* section lire service */
        @media screen and (max-width: 800px) {
            .boxImgService{
                width: 500px;
            }
        }

        @media screen and (max-width: 700px) {
            .boxImgService{
                width: 400px;
            }
        }
    
        @media screen and (max-width: 650px) {
            p.description{
                font-size: 18px;
            }
        }

        @media screen and (max-width: 600px) {
            .boxService, .boxImgService{
                width: 100%;
            }
        }

        @media screen and (max-width: 450px) {
            p.description{
                font-size: 17px;
            }
        }
    /* section lire service */
/* responsive */