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

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

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

.agenda__nom {
    font-size: 17px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
}

@media(min-width:768px) {
    .agenda {
        display: inline-flex;
        padding-right: 15px;
    }
    .agenda__image {
        width: 50%;
        text-align: center;
    }
    .agenda__nom {
        width: 50%;
        text-align: left;
    }
}