.revendeurs-container {
    margin: 150px 0;

}

.revendeurs-container .revendeurs-bloc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10rem;
}

.revendeurs-container .image-container {
    flex: 0 0 42%;
    max-width: 42%;
}

.revendeurs-container .image-container img {
    width: 100%;
    object-fit: cover;
}

.revendeurs-container .text-container {
    flex: 0 0 40%;
    max-width: 40%;
}

.revendeurs-container .text-container a {
    margin-left: 3rem;
}

.revendeurs-container .text-container .content {
    position: relative;
    padding-left: 20px;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.revendeurs-container .text-container .content::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: #FFDD00;
}

/* Responsive < 991px */
@media (max-width: 991px) {
    .revendeurs-container {
        margin: 60px 0;

    }

    .revendeurs-container .revendeurs-bloc {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .revendeurs-container .image-container,
    .revendeurs-container .content {
        display: none;
    }

    .revendeurs-container .text-container {
        flex: 0 0 80%;
        max-width: 80%;
    }

    .revendeurs-container .text-container h2 {
        padding: 30px;
        position: relative;
    }

    .revendeurs-container .text-container h2::before {
        content: "";
        position: absolute;
        top: 0;
        left: 64%;
        transform: translateX(-50%);
        width: 70%;
        border-top: 5px solid #FFDD00;
    }

    .revendeurs-container .text-container h2::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        border-right: 5px solid #FFDD00;
    }

    .revendeurs-container .text-container a {
        margin-left: 0;
    }
}
