@font-face {
    font-family: 'Hacen newspaper';
    src: url('../fonts/Hacen\ Newspaper\ Regular.ttf');
    font-weight: 300;
}

.infographique p {
    display: flex;
    align-items: start;
    column-gap: 1.875rem;
}

.infographique p .rectangle {
    min-width: 3.75rem;
    height: 6.75rem;
    background-color: #1A2E7E;
}

.infographique .button-container {
    display: flex;
    column-gap: 1.875rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


.infographique button {
    text-wrap: nowrap;
    padding: 1.25rem 2rem;
    background-color: white;
    color: #1A2E7E;
    border: 1px solid #1A2E7E;
}

.infographique button:focus {
    outline: none;
}

.infographique button.active {
    background-color: #1A2E7E;
    color: white;
}


.infographique svg {
    width: 100%;
    height: 100%;
}


body.rtl .infographique p {
    font-weight: 300;
    font-size: 1.75rem;
    font-family: 'Hacen newspaper';
}


body.rtl .infographique button {
    font-weight: 300;
    font-size: 1.25rem;
    font-family: 'Hacen newspaper';
    margin-bottom: 1rem;
}

@media screen and (max-width:768px) {
    .infographique button {
        min-width: 100%;
        max-width: 100%;
    }

    .infographique p {
        column-gap: 1rem;
    }

    .infographique p .rectangle {
        min-width: 2rem;
        height: 4rem;
        background-color: #1A2E7E;
    }

    body.rtl .infographique p {
        font-weight: 300;
        font-size: 1.25rem;
        font-family: 'Hacen newspaper';
    }


    body.rtl .infographique button {
        font-weight: 300;
        font-size: 1rem;
        font-family: 'Hacen newspaper';
    }
}