.fond__rouge h2 {
    color: #fff;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: flex-end;
}
.fond__rouge h2 .icon svg path {
    fill: #fff;
}
.chiffre__cles .content {
    background-color: var(--color-gris-fond);
    position: relative;
}
.chiffre__cles .content::after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--color-gris-fond-fonce);
    z-index: 0;
}
.chiffre__cles .container {
    position: relative;
    z-index: 1;
}
.number__item {
    display: flex;
    gap: 25px;
    padding: 1rem 2rem;
}
.number {
    font-size: 3.375rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-rouge);
    margin: 0;
}
.texte {
    color: var(--color-rouge);
    text-transform: uppercase;
    max-width: 165px;
    line-height: 1.2;
    margin: 0;
}
.number__item svg {
    width: 70px;
    height: 70px;
}
.number__item svg path {
    stroke: var(--color-gris);
}
@media (max-width: 1200px){
    .number__item {
        padding: 0.5rem 1rem;
    }
    .number__item svg {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 800px){
    .chiffre__cles .container {
        padding: 0 1.5rem;
    }
    .align-items-center {
        margin: 0;
    }
    .chiffre__cles .content::after {
        top: 48%;
        height: 53%;
        width: 100%;
    }
    .number__item {
        padding: 1rem 0;
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 600px){
    .number__item {
        flex-direction: row;
    }
}