.objet h4,
.objet h5 {
    color: var(--titre-h5-h4);
    font-weight: bold;
}
.objet h4 {
    font-size: 20px;
}
.objet h5 {
    margin-top: 20px;
    font-size: 16px;
}
.espace {
    margin-top: 100px;
}
.bloc-de-contenu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 20px;
    border-radius: 20px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
    transition: all 0.5s ease-in-out;
    z-index: 50;
}
.bloc-de-contenu.inverse {
    flex-direction: row-reverse;
}
.objet {
    width: calc(80% - 10px);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--Bordure-section);
    border-radius: 20px;
    overflow: hidden;
}
.objet:nth-child(odd) {
    padding: 20px;
    height: auto;
    justify-content: center;
}
.objet:nth-child(odd) p {
    text-align: justify;
    text-justify: inter-word;
}
.objet:nth-child(even) {
    max-width: 400px;
    padding: 0;
    flex: 0 0 auto;
}
.objet:nth-child(even) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .espace {
        margin-top: 40px;
    }
    .bloc-de-contenu,
    .bloc-de-contenu.inverse {
        flex-direction: column;
        padding: 10px;
        box-shadow: none;
    }
    .objet {
        width: 100%;
        margin-bottom: 20px;
    }
    .objet:nth-child(even) {
        max-width: 100%;
        transform: translateY(20px);
        opacity: 0;
        animation: slideIn 0.5s ease-in-out forwards;
        animation-delay: 0.2s;
    }
    .objet:nth-child(even) img {
        height: 300px;
    }
    @keyframes slideIn {
        from {
            transform: translateY(20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}
