.notre_metier{
    display: flex;
    box-sizing: border-box;
    padding: 0;
    position: relative;
}
.strong{
    font-family: var(--police-Quicksand-Bold);
}
.notre_metier *{
    box-sizing: border-box;
    color: var(--couleur-12);
}



.notre_metier picture{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.notre_metier picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.notre_metier .texts{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    z-index: 1;
    width: 100%;
    height: 100%;

    padding-top: clamp(50px, 10vw, 125px);
    padding-bottom: clamp(50px, 10vw, 125px);
    padding-right: 10%;
    padding-left: 10%;
}

.notre_metier .texts .all{
    display: flex;
    gap: 4rem;
}
.notre_metier .texts .all .left,
.notre_metier .texts .all .right{
    width: 50%;
}

.notre_metier .texts .all *{
    font-size: 1.2rem;
}


.notre_metier .texts .all .right ul{
    margin: 0;
    padding: 0;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.notre_metier .texts .all .right ul li{
    list-style-type: none;
    position: relative;
    padding-left: 35px;
}

.notre_metier .texts .all .right ul li::before{
    content: url('../../../../uploads/2023/02/pack-4.svg');
    position: absolute;
    top: 0.25rem;
    left: 5px;
    width: 20px;
    max-width: 20px;
    min-width: 20px;
}

@media screen and (max-width: 1200px) {
    .notre_metier .texts .all{
        flex-direction: column;
    }

    .notre_metier .texts .all .left,
    .notre_metier .texts .all .right{
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .notre_metier .texts .all {
        gap: 2rem;
    }
    .notre_metier .texts .all *{
        font-size: 1rem;
    }
}

@media screen and (max-width: 400px) {
    .notre_metier .texts .all *{
        font-size: .8rem;
    }
}