.bloc_liste_categories_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background-image: url('../img/bg.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
}
.bloc_liste_categories_content .bloc_liste_categories_content_title p {
    margin: 0;
    font: var(--font-h1);
    color: var(--white);
}
.bloc_liste_categories_content .bloc_liste_categories_content_title p span {
    font: var(--font-h1);
    color: var(--green);
}
.bloc_liste_categories_content .bloc_liste_categories_content_text {
    font: var(--text);
    color: var(--white);
}
.bloc_liste_categories_content .bloc_liste_categories_content_cta {
    border-radius: 40px;
    border: 1.5px solid var(--white);
    font: var(--button);
    padding: 15px 35px;
    transition: .2s;
    width: fit-content;
    color: var(--white);
    text-transform: uppercase;
}
.bloc_liste_categories_content .bloc_liste_categories_content_cta:hover {
    background-color: var(--white);
    color: var(--blue-green);
}
@media (max-width: 768px) {
    .bloc_liste_categories {
        width: 100%!important;
    }
    .bloc_liste_categories_content .bloc_liste_categories_content_title p,
    .bloc_liste_categories_content .bloc_liste_categories_content_title p span {
        font-size: 28px;
    }
}