.resultat {
    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: 50px;
    margin-bottom: 30px;
}

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

.resultat__image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resultat img {
    width: 150px !important;
    height: auto !important;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    display: inline-block;
    margin-left: -25px !important;
}

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

.resultat__nom h4 {
    font-size: 27px;
    font-weight: 800;
}

.resultat__nom .mois {
    color: #D6D6D6;
}

@media(min-width:768px) {
    .resultat {
        display: inline-flex;
    }
    .resultat__image {
        width: 200px;
    }
    .resultat__nom {
        width: 70%;
        text-align: left;
    }
}