
/*---------------------------------

  bloc_company

---------------------------------*/

.bloc_company dd a{
    color: var(--darkgreen-txt);
}

/*---------------------------------

  bloc_message

---------------------------------*/

.bloc_message{
    background: #F0FBF7;
}

.bloc_message .flex{
    gap: 10%;
}

.bloc_message .txt{
    width: 60%;
}
.bloc_message .txt p + p{
    margin-top: 30px;
}
.bloc_message .txt p + p:last-of-type{
    margin-top: 40px;
}

.bloc_message img{
    width: 30%;
    object-fit: cover;
}

@media screen and (max-width:767px) {

    .bloc_message .txt{
        width: 100%;
    }

    .bloc_message img{
        width: 100%;
        margin-top: 40px;
        object-fit: cover;
        aspect-ratio: 3 / 2;
    }

}