#zoneServicesRoute{
    width: 85%;
    margin : 0 auto;
    margin-top: 1.5rem !important;
}

#zoneServiceObjet{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    margin-top: 40px;
}

.order-1{
    order: 1;
}

.order-2{
    order: 2;
}

.titreH2Service {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(10px, 8vw, 50px)!important;
    text-transform: uppercase;
    margin: 0;
}

.zoneService{
    width: 520px;
    margin: 40px;
}

.zoneServiceText {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.imageService{
    width: 100%;
    aspect-ratio: 523/462;
    object-fit: cover;
    border-radius: 12px;
}

.introductionService {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}

/* Bouton black inactif*/
.btn-black{
    width: 192px;
    height: 44px;
    border-radius: 6px;
    background-color: #09090B;
    display: flex;
    padding: 10px 14px;
    gap: 10px;
    align-self: left; /* Bouton à gauche sous le texte */
    order: 3; /* Changer l'ordre du bouton à 3 (pour qu'il soit sous le texte) */
    text-align: center;
}

.btn-black .svgEdit{
    width: 24px;
    height: 24px;
}

.btn-black .txt-main-btn{
    color: #FAFAFA;
    font-family: 'DM Sans', 'sans-serif';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

/* Bouton black hover */
.btn-black:hover{
    background-color: #0EA5E9;
}

.btn-black:hover p{
    color: #FAFAFA;
    font-family: 'DM Sans', 'sans-serif';
}

/* Bouton black actif */
.btn-black:active{
    background-color: #0369A1;
}

@media screen and (max-width:992px){

    #zoneServiceObjet{
        margin-top: 80px;
    }

    .imageService{
        aspect-ratio: 523/362; 
    }

    .zoneServiceText {
        max-width: 520px; 
        order:1!important;
        height: auto;
        margin-bottom: 0;
    }

    .zoneServiceText a {
        margin: 36px 0;
    }

    .zoneImg {
        max-width: 100%; 
        order:2!important; 
        margin-top: 0;
    }

    #zoneServicesRoute{
        width: 95%;
    }

}


@media screen and (max-width:1428px){

    .imageService{
        aspect-ratio: 523/362; 
    }

    .zoneServiceText {
        max-width: 520px; 
        order:1!important; 
        height: auto;
        margin-bottom: 0;
    }

    .zoneServiceText a {
        margin: 36px 0;
    }

    .zoneServiceImg {
        max-width: 100%; 
        order:2!important; 
        margin-top: 0;
    }

    .introductionService{
        margin-top: 10px;
    }

}