.qualite {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 25px;
    position: relative;
    transform-style: preserve-3d;
    background-color: white;
    width: 95%;
    margin-left: 5%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.qualite::before {
    content: '';
    background: url('../../dist/images/rectangle-yellow.svg');
    width: 20%;
    height: 100%;
    left: -20px;
    position: absolute;
    bottom: 20px;
    transform: translateZ(-1px);
}

.qualite__image {
    width: 100%;
    text-align: center;
}

.qualite img {
    width: 100px !important;
    height: auto !important;
    margin-bottom: 15px !important;
    margin-top: 0px !important;
    display: inline-block;
}

.qualite__nom {
    font-size: 17px;
    font-weight: 400;
    display: inline-block;
    text-align: center;
    width: 100%;
}

@media(min-width:768px) {
    .qualite {
        display: inline-flex;
    }
    .qualite__image {
        width: 150px;
        text-align: left;
    }
    .qualite__nom {
        width: 70%;
        text-align: left;
    }
}