.presentation-prestation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6rem;
    margin-bottom: 5rem;
}

.presentation-prestation>div {
    width: calc(50% - 2rem);
    position: relative;
}

.presentation-prestation .image-prestation {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    min-height: 30vh;
    object-fit: cover;
    border-radius: 1rem;
    position: relative;
    z-index: 2;
}

.presentation-prestation .bg-decoratif {
    background-color: var(--primary-very-light);
    width: calc(100% - 1rem);
    height: 100%;
    border-radius: 1rem;
    position: absolute;
    margin-left: 1rem;
    margin-top: 1rem;
    top: 0;
    left: 0;
}

.presentation-prestation .description-presentation {
    text-align: justify;
}

.badge-section {
    margin-top: 6rem;
}

@media screen and (max-width: 800px) {
    .presentation-prestation {
        flex-direction: column;
    }

    .presentation-prestation>div {
        width: 100%;
    }

    .presentation-prestation>div:nth-of-type(2) {
        margin-top: 3rem;
    }

    .badge-section {
        margin-top: 4rem;
    }
}