/* categorie service */
    .categorie_service{
        margin: 32px auto;
        margin-bottom: -32px;
        display: flex;
        justify-content: center;
    }
    
    .container_categorie_service{
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        max-width: 1000px;
        margin: 0 auto;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .container_categorie_service::-webkit-scrollbar{
        width: 5px;
        height: 5px;
    }

    .container_categorie_service::-webkit-scrollbar-thumb{
        background: var(--light-black);
    }
    
    .content_categorie_service{
        padding: 16px;
        min-width: 200px;
        max-width: max-content;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .content_categorie_service:nth-child(odd){
        background: var(--first);
    }
    
    .content_categorie_service:nth-child(even){
        background: var(--second);
    }
    
    .logo_service{
        width: 50px; height: 50px;
        background: var(--white);
        border-radius: 50%;
        padding: 8px;
    }
    
    .logo_service img{
        width: 100%; height: 100%;
        object-fit: contain;
    }
    
    .nom_categorie_service{
        color: var(--white);
        text-align: center;
        text-wrap: nowrap;
    }
/* categorie service */

/* section service */
    .container_services{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 32px;
    }
    
    .content_service{
        width: 360px;
    }

    .box_img_service{
        position: relative;
        width: 100%;
        height: 250px;
        border-radius: 16px;
    }

    .box_img_service img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }
    
    .service_logo{
        position: absolute;
        bottom: 0; left: 50%;
        transform: translate(-50%, 50%);
        width: 80px; height: 80px;
        background: var(--second);
        padding: 8px;
        border-radius: 50%;
        border: 5px solid var(--white);
    }
    
    .service_logo img{
        width: 100%; height: 100%;
        object-fit: contain;
    }
    
    .info_service{
        padding: 16px;
        padding-top: 40px;
    }

    .service_title{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-weight: 600;
        margin: 8px auto;
        text-align: center;
    }
    
    .service_desc{
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 8px auto;
        text-align: center;
        color: var(--gray);
    }
    
    .box_price{
        list-style: none;
        margin: 8px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .box_price li{
        display: flex;
        align-items: center;
        color: var(--gray);
        i{
            color: var(--second);
        }
    }
/* section service */

/* responsive */
    /* section service */
        @media screen and (max-width: 450px){
            .box_img_service{
                height: 210px;
            }
        }
    /* section service */
/* responsive */